From 0dd9ba8adce15092c1082ce9076875221069c5ce Mon Sep 17 00:00:00 2001 From: allegroai <> Date: Sat, 25 Sep 2021 23:05:24 +0300 Subject: [PATCH] Fix Python 3.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 8239309d..429be5fb 100644 --- a/clearml/automation/controller.py +++ b/clearml/automation/controller.py @@ -1943,7 +1943,7 @@ class PipelineDecorator(PipelineController): task_type=None, # type: Optional[str] repo=None, # type: Optional[str] repo_branch=None, # type: Optional[str] - repo_commit=None, # type: Optional[str] + repo_commit=None # type: Optional[str] ): # type: (...) -> Callable """ @@ -2130,7 +2130,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 """