scaleapi 2.15.3__tar.gz → 2.15.4__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {scaleapi-2.15.3 → scaleapi-2.15.4}/PKG-INFO +1 -1
- {scaleapi-2.15.3 → scaleapi-2.15.4}/scaleapi/_version.py +1 -1
- {scaleapi-2.15.3 → scaleapi-2.15.4}/scaleapi/projects.py +1 -2
- {scaleapi-2.15.3 → scaleapi-2.15.4}/scaleapi.egg-info/PKG-INFO +1 -1
- {scaleapi-2.15.3 → scaleapi-2.15.4}/README.rst +0 -0
- {scaleapi-2.15.3 → scaleapi-2.15.4}/scaleapi/__init__.py +0 -0
- {scaleapi-2.15.3 → scaleapi-2.15.4}/scaleapi/api.py +0 -0
- {scaleapi-2.15.3 → scaleapi-2.15.4}/scaleapi/batches.py +0 -0
- {scaleapi-2.15.3 → scaleapi-2.15.4}/scaleapi/evaluation_tasks.py +0 -0
- {scaleapi-2.15.3 → scaleapi-2.15.4}/scaleapi/exceptions.py +0 -0
- {scaleapi-2.15.3 → scaleapi-2.15.4}/scaleapi/files.py +0 -0
- {scaleapi-2.15.3 → scaleapi-2.15.4}/scaleapi/quality_tasks.py +0 -0
- {scaleapi-2.15.3 → scaleapi-2.15.4}/scaleapi/studio.py +0 -0
- {scaleapi-2.15.3 → scaleapi-2.15.4}/scaleapi/tasks.py +0 -0
- {scaleapi-2.15.3 → scaleapi-2.15.4}/scaleapi/teams.py +0 -0
- {scaleapi-2.15.3 → scaleapi-2.15.4}/scaleapi/training_tasks.py +0 -0
- {scaleapi-2.15.3 → scaleapi-2.15.4}/scaleapi.egg-info/SOURCES.txt +0 -0
- {scaleapi-2.15.3 → scaleapi-2.15.4}/scaleapi.egg-info/dependency_links.txt +0 -0
- {scaleapi-2.15.3 → scaleapi-2.15.4}/scaleapi.egg-info/requires.txt +0 -0
- {scaleapi-2.15.3 → scaleapi-2.15.4}/scaleapi.egg-info/top_level.txt +0 -0
- {scaleapi-2.15.3 → scaleapi-2.15.4}/setup.cfg +0 -0
- {scaleapi-2.15.3 → scaleapi-2.15.4}/setup.py +0 -0
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
__version__ = "2.15.
|
|
1
|
+
__version__ = "2.15.4"
|
|
2
2
|
__package_name__ = "scaleapi"
|
|
@@ -5,7 +5,6 @@ class TaskTemplate:
|
|
|
5
5
|
self._json = json
|
|
6
6
|
self._client = client
|
|
7
7
|
self.id = json["id"]
|
|
8
|
-
self.project = json["project"]
|
|
9
8
|
self.version = json["version"]
|
|
10
9
|
self.created_at = json["created_at"]
|
|
11
10
|
self.updated_at = json["updated_at"]
|
|
@@ -15,7 +14,7 @@ class TaskTemplate:
|
|
|
15
14
|
return hash(self.id)
|
|
16
15
|
|
|
17
16
|
def __str__(self):
|
|
18
|
-
return f"TaskTemplate(id={self.id}
|
|
17
|
+
return f"TaskTemplate(id={self.id})"
|
|
19
18
|
|
|
20
19
|
def __repr__(self):
|
|
21
20
|
return f"TaskTemplate({self._json})"
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|