From 73f10b54a74964eaa0c969d991283ad7884fb359 Mon Sep 17 00:00:00 2001 From: "Alec Thomson (S&A, Kensington WA)" Date: Tue, 14 Jan 2025 14:44:10 +0800 Subject: [PATCH] Fix typing --- flint/prefect/flows/polarisation_pipeline.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flint/prefect/flows/polarisation_pipeline.py b/flint/prefect/flows/polarisation_pipeline.py index c1d02097..c992ab10 100644 --- a/flint/prefect/flows/polarisation_pipeline.py +++ b/flint/prefect/flows/polarisation_pipeline.py @@ -95,7 +95,7 @@ def process_science_fields_pol( polarisations: dict[str, str] = strategy.get("polarisation", {"total": {}}) - image_sets_dict: list[str, PrefectFuture[ImageSet]] = {} + image_sets_dict: dict[str, PrefectFuture[ImageSet]] = {} image_sets_list: list[PrefectFuture[ImageSet]] = [] for polarisation in polarisations.keys(): _image_sets = []