From a0fc1aa4586e165bda3f5126e48fa9e2d0d88cc7 Mon Sep 17 00:00:00 2001 From: Neda Moeini <neda.moeini@geant.org> Date: Wed, 7 May 2025 16:06:05 +0200 Subject: [PATCH] Make ruff and mypy happy --- test/workflows/l3_core_service/test_import_l3_core_service.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/test/workflows/l3_core_service/test_import_l3_core_service.py b/test/workflows/l3_core_service/test_import_l3_core_service.py index e455851aa..b9733e19a 100644 --- a/test/workflows/l3_core_service/test_import_l3_core_service.py +++ b/test/workflows/l3_core_service/test_import_l3_core_service.py @@ -13,7 +13,9 @@ def test_import_l3_core_service_success(l3_core_service_subscription_factory, pr imported_subscription = l3_core_service_subscription_factory(product_name=product_name, is_imported=True) assert imported_subscription.product.name == PRODUCT_IMPORTED_MAP[product_name] imported_l3_core_service = str(imported_subscription.subscription_id) - result, _, _ = run_workflow(L3_IMPORT_WF_MAP[f"Imported {product_name}"], [{"subscription_id": imported_l3_core_service}]) + result, _, _ = run_workflow( + L3_IMPORT_WF_MAP[f"Imported {product_name}"], [{"subscription_id": imported_l3_core_service}] + ) assert_complete(result) subscription = SubscriptionModel.from_subscription(imported_l3_core_service) -- GitLab