From eacce07e9e0016ad5bcea698b0edc19560864de4 Mon Sep 17 00:00:00 2001 From: Shamil Arslanov <66618116+homomorfism@users.noreply.github.com> Date: Wed, 22 Jan 2025 18:46:35 +0500 Subject: [PATCH] fix syntax warning --- clearml/backend_api/services/v2_13/tasks.py | 4 ++-- clearml/backend_api/services/v2_20/tasks.py | 6 +++--- clearml/backend_api/services/v2_23/models.py | 4 ++-- clearml/backend_api/services/v2_23/tasks.py | 4 ++-- clearml/backend_api/services/v2_9/tasks.py | 4 ++-- clearml/version.py | 2 +- 6 files changed, 12 insertions(+), 12 deletions(-) diff --git a/clearml/backend_api/services/v2_13/tasks.py b/clearml/backend_api/services/v2_13/tasks.py index 07fd7423..59db5784 100644 --- a/clearml/backend_api/services/v2_13/tasks.py +++ b/clearml/backend_api/services/v2_13/tasks.py @@ -7459,7 +7459,7 @@ class GetAllRequest(Request): :param parent: Parent ID :type parent: str :param status_changed: List of status changed constraint strings (utcformat, - epoch) with an optional prefix modifier (\>,\>=, \<, \<=) + epoch) with an optional prefix modifier (>, >=, <, <=) :type status_changed: Sequence[str] :param search_text: Free text search query :type search_text: str @@ -7565,7 +7565,7 @@ class GetAllRequest(Request): "type": ["array", "null"], }, "status_changed": { - "description": "List of status changed constraint strings (utcformat, epoch) with an optional prefix modifier (\>,\>=, \<, \<=)", + "description": "List of status changed constraint strings (utcformat, epoch) with an optional prefix modifier (>, >=, <, <=)", "items": {"pattern": "^(>=|>|<=|<)?.*$", "type": "string"}, "type": ["array", "null"], }, diff --git a/clearml/backend_api/services/v2_20/tasks.py b/clearml/backend_api/services/v2_20/tasks.py index 89871743..afb3381d 100644 --- a/clearml/backend_api/services/v2_20/tasks.py +++ b/clearml/backend_api/services/v2_20/tasks.py @@ -7825,7 +7825,7 @@ class GetAllRequest(Request): :param parent: Parent ID :type parent: str :param status_changed: List of status changed constraint strings (utcformat, - epoch) with an optional prefix modifier (\>,\>=, \<, \<=) + epoch) with an optional prefix modifier (>, >=, <, <=) :type status_changed: Sequence[str] :param search_text: Free text search query :type search_text: str @@ -7971,8 +7971,8 @@ class GetAllRequest(Request): }, "status_changed": { "description": ( - "List of status changed constraint strings (utcformat, epoch) with an optional prefix modifier (\>," - " \>=, \<, \<=)" + "List of status changed constraint strings (utcformat, epoch) with an optional prefix modifier (>," + ">=, <, <=)" ), "items": {"pattern": "^(>=|>|<=|<)?.*$", "type": "string"}, "type": ["array", "null"], diff --git a/clearml/backend_api/services/v2_23/models.py b/clearml/backend_api/services/v2_23/models.py index 04444718..99f6f6bc 100644 --- a/clearml/backend_api/services/v2_23/models.py +++ b/clearml/backend_api/services/v2_23/models.py @@ -2179,7 +2179,7 @@ class GetAllRequest(Request): :param uri: List of model URIs :type uri: Sequence[str] :param last_update: List of last_update constraint strings (utcformat, epoch) - with an optional prefix modifier (\>,\>=, \<, \<=) + with an optional prefix modifier (>, >=, <, <=) :type last_update: Sequence[str] :param _all_: Multi-field pattern condition (all fields match pattern) :type _all_: MultiFieldPatternData @@ -2243,7 +2243,7 @@ class GetAllRequest(Request): "last_update": { "description": ( "List of last_update constraint strings, or a single string (utcformat, epoch) with an optional prefix " - "modifier (\>,\>=, \<, \<=)" + "modifier (>, >=, <, <=)" ), "items": {"pattern": "^(>=|>|<=|<)?.*$", "type": "string"}, "type": ["string", "array", "null"], diff --git a/clearml/backend_api/services/v2_23/tasks.py b/clearml/backend_api/services/v2_23/tasks.py index 34a2943a..74807cf8 100644 --- a/clearml/backend_api/services/v2_23/tasks.py +++ b/clearml/backend_api/services/v2_23/tasks.py @@ -8070,7 +8070,7 @@ class GetAllRequest(Request): :param parent: Parent ID :type parent: str :param status_changed: List of status changed constraint strings (utcformat, - epoch) with an optional prefix modifier (\>,\>=, \<, \<=) + epoch) with an optional prefix modifier (>, >=, <, <=) :type status_changed: Sequence[str] :param search_text: Free text search query :type search_text: str @@ -8219,7 +8219,7 @@ class GetAllRequest(Request): "status_changed": { "description": ( "List of status changed constraint strings, or a single string (utcformat, epoch) with an optional prefix modifier " - "(\>,\>=, \<, \<=)" + "(>, >=, <, <=)" ), "items": {"pattern": "^(>=|>|<=|<)?.*$", "type": "string"}, "type": ["string", "array", "null"], diff --git a/clearml/backend_api/services/v2_9/tasks.py b/clearml/backend_api/services/v2_9/tasks.py index f4d630ea..7487bf4f 100644 --- a/clearml/backend_api/services/v2_9/tasks.py +++ b/clearml/backend_api/services/v2_9/tasks.py @@ -5371,7 +5371,7 @@ class GetAllRequest(Request): :param parent: Parent ID :type parent: str :param status_changed: List of status changed constraint strings (utcformat, - epoch) with an optional prefix modifier (\>,\>=, \<, \<=) + epoch) with an optional prefix modifier (>, >=, <, <=) :type status_changed: Sequence[str] :param search_text: Free text search query :type search_text: str @@ -5477,7 +5477,7 @@ class GetAllRequest(Request): 'type': ['array', 'null'], }, 'status_changed': { - 'description': 'List of status changed constraint strings (utcformat, epoch) with an optional prefix modifier (\>,\>=, \<, \<=)', + 'description': 'List of status changed constraint strings (utcformat, epoch) with an optional prefix modifier (>, >=, <, <=)', 'items': {'pattern': '^(>=|>|<=|<)?.*$', 'type': 'string'}, 'type': ['array', 'null'], }, diff --git a/clearml/version.py b/clearml/version.py index c7bbe496..0daeee7b 100644 --- a/clearml/version.py +++ b/clearml/version.py @@ -1 +1 @@ -__version__ = "1.17.1" +__version__ = "1.17.2"