Skip to content

Commit

Permalink
removed name attribute from submitter call
Browse files Browse the repository at this point in the history
  • Loading branch information
tclose committed Feb 17, 2025
1 parent 0b91b95 commit 6358b81
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions pydra/engine/specs.py
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,6 @@ def __call__(
audit_flags: AuditFlag = AuditFlag.NONE,
messengers: ty.Iterable[Messenger] | None = None,
messenger_args: dict[str, ty.Any] | None = None,
name: str | None = None,
hooks: TaskHooks | None = None,
**kwargs: ty.Any,
) -> OutputsType:
Expand All @@ -212,8 +211,6 @@ def __call__(
Messengers, by default None
messenger_args : dict, optional
Messenger arguments, by default None
name : str
The name of the task, by default None
**kwargs : dict
Keyword arguments to pass on to the worker initialisation
Expand Down Expand Up @@ -242,7 +239,6 @@ def __call__(
) as sub:
result = sub(
self,
name=name,
hooks=hooks,
)
except TypeError as e:
Expand Down

0 comments on commit 6358b81

Please sign in to comment.