File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -940,7 +940,9 @@ def save_results(
940
940
pipeline , _created = Pipeline .objects .get_or_create (slug = results .pipeline , defaults = {"name" : results .pipeline })
941
941
if _created :
942
942
logger .warning (f"Pipeline choice returned by the Processing Service was not recognized! { pipeline } " )
943
- algorithms_used = set ()
943
+
944
+ algorithms_used : dict [str , Algorithm ] = {}
945
+ deployments_used : dict [str , Deployment ] = {}
944
946
945
947
job_logger = logger
946
948
start_time = time .time ()
@@ -965,7 +967,6 @@ def save_results(
965
967
966
968
deployments_data = results .deployments
967
969
source_images_data = results .source_images
968
- deployments_used : dict [str , Deployment ] = {}
969
970
970
971
if not deployments_data :
971
972
job_logger .warning (
You can’t perform that action at this time.
0 commit comments