From f986c72113ac8173861b998acefc75af0bfe85d3 Mon Sep 17 00:00:00 2001 From: allegroai <> Date: Sat, 16 Oct 2021 23:03:20 +0300 Subject: [PATCH] Fix PY3.5 compatibility --- clearml/automation/controller.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/clearml/automation/controller.py b/clearml/automation/controller.py index 0a58e779..adbd5dcd 100644 --- a/clearml/automation/controller.py +++ b/clearml/automation/controller.py @@ -2423,7 +2423,7 @@ class PipelineDecorator(PipelineController): helper_functions=None, # type: Optional[Sequence[Callable]] monitor_metrics=None, # type: Optional[List[Union[Tuple[str, str], Tuple[(str, str), (str, str)]]]] monitor_artifacts=None, # type: Optional[List[Union[str, Tuple[str, str]]]] - monitor_models=None, # type: Optional[List[Union[str, Tuple[str, str]]]] + monitor_models=None # type: Optional[List[Union[str, Tuple[str, str]]]] ): # type: (...) -> Callable """ @@ -2706,7 +2706,7 @@ class PipelineDecorator(PipelineController): pool_frequency=0.2, # type: float add_pipeline_tags=False, # type: bool target_project=None, # type: Optional[str] - pipeline_execution_queue='services', # type: Optional[str] + pipeline_execution_queue='services' # type: Optional[str] ): # type: (...) -> Callable """