From b1c30286f7b7dcf86c42a4453b0723e18ee90f06 Mon Sep 17 00:00:00 2001 From: Mikolaj <57460148+dejamiko@users.noreply.github.com> Date: Thu, 3 Aug 2023 10:34:04 +0000 Subject: [PATCH] Format files :( Signed-off-by: Mikolaj <57460148+dejamiko@users.noreply.github.com> --- tests/test_script_annotations.py | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) diff --git a/tests/test_script_annotations.py b/tests/test_script_annotations.py index ffa1b6b91..520a77552 100644 --- a/tests/test_script_annotations.py +++ b/tests/test_script_annotations.py @@ -17,8 +17,12 @@ def test_new_parameter_annotations(module_name, global_config_fixture): # GIVEN global_config_fixture.experimental_features["script_annotations"] = True - workflow_old = importlib.import_module(f"tests.annotation_regression_examples.script_annotations_parameters_{module_name}_old").w - workflow_new = importlib.import_module(f"tests.annotation_regression_examples.script_annotations_parameters_{module_name}_new").w + workflow_old = importlib.import_module( + f"tests.annotation_regression_examples.script_annotations_parameters_{module_name}_old" + ).w + workflow_new = importlib.import_module( + f"tests.annotation_regression_examples.script_annotations_parameters_{module_name}_new" + ).w # WHEN output_old = workflow_old.to_dict() @@ -35,8 +39,12 @@ def test_new_parameter_annotations(module_name, global_config_fixture): def test_new_artifact_annotations(module_name, global_config_fixture): # GIVEN global_config_fixture.experimental_features["script_annotations"] = True - workflow_old = importlib.import_module(f"tests.annotation_regression_examples.script_annotations_artifacts_{module_name}_old").w - workflow_new = importlib.import_module(f"tests.annotation_regression_examples.script_annotations_artifacts_{module_name}_new").w + workflow_old = importlib.import_module( + f"tests.annotation_regression_examples.script_annotations_artifacts_{module_name}_old" + ).w + workflow_new = importlib.import_module( + f"tests.annotation_regression_examples.script_annotations_artifacts_{module_name}_new" + ).w # WHEN output_old = workflow_old.to_dict()