mirror of
https://github.com/clearml/clearml
synced 2025-03-03 18:52:12 +00:00
Fix wrong argument order (issue #220)
This commit is contained in:
parent
4ca9dc4c00
commit
7ce5bc0313
@ -657,7 +657,8 @@ class Task(IdObjectBase, AccessMixin, SetupUploadMixin):
|
||||
:type tags: [str]
|
||||
"""
|
||||
self._conditionally_start_task()
|
||||
self._get_output_model(upload_required=False).update_for_task(model_uri, self.id, name, comment, tags)
|
||||
self._get_output_model(upload_required=False).update_for_task(
|
||||
uri=model_uri, task_id=self.id, name=name, comment=comment, tags=tags)
|
||||
|
||||
def update_output_model_and_upload(
|
||||
self,
|
||||
|
Loading…
Reference in New Issue
Block a user