This is an automated email from the ASF dual-hosted git repository. skrawcz pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/hamilton.git
commit d570d3fffef8d6f65bea744e61f2e4c9db5fd905 Author: Pablo Eduardo Diaz <[email protected]> AuthorDate: Sat Jan 24 16:37:11 2026 -0400 Refactor display_name imports in test_graph.py to streamline test dependencies --- tests/test_graph.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/test_graph.py b/tests/test_graph.py index 069902b5..48027e7b 100644 --- a/tests/test_graph.py +++ b/tests/test_graph.py @@ -36,6 +36,8 @@ import tests.resources.bad_functions import tests.resources.compatible_input_types import tests.resources.config_modifier import tests.resources.cyclic_functions +import tests.resources.display_name_functions +import tests.resources.display_name_list_functions import tests.resources.dummy_functions import tests.resources.dummy_functions_module_override import tests.resources.extract_column_nodes @@ -49,8 +51,6 @@ import tests.resources.parametrized_inputs import tests.resources.parametrized_nodes import tests.resources.test_default_args import tests.resources.typing_vs_not_typing -import tests.resources.display_name_functions -import tests.resources.display_name_list_functions def test_find_functions():
