mirror of
https://github.com/clearml/clearml
synced 2025-05-29 09:38:15 +00:00
Allow passing name in task_filters
This commit is contained in:
parent
d1f377d5f2
commit
88168f9ee4
@ -3338,7 +3338,7 @@ class Task(_Task):
|
|||||||
tasks.GetAllRequest(
|
tasks.GetAllRequest(
|
||||||
id=task_ids,
|
id=task_ids,
|
||||||
project=project_ids if project_ids else kwargs.pop('project', None),
|
project=project_ids if project_ids else kwargs.pop('project', None),
|
||||||
name=task_name if task_name else None,
|
name=task_name if task_name else kwargs.pop('name', None),
|
||||||
only_fields=only_fields,
|
only_fields=only_fields,
|
||||||
**kwargs
|
**kwargs
|
||||||
)
|
)
|
||||||
|
Loading…
Reference in New Issue
Block a user