Skip to content

Commit 45292b1

Browse files
authored
Revert parameter order breaking change (#57)
1 parent 82107f9 commit 45292b1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

durabletask/client.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -123,8 +123,8 @@ def schedule_new_orchestration(self, orchestrator: Union[task.Orchestrator[TInpu
123123
input: Optional[TInput] = None,
124124
instance_id: Optional[str] = None,
125125
start_at: Optional[datetime] = None,
126-
tags: Optional[dict[str, str]] = None,
127-
reuse_id_policy: Optional[pb.OrchestrationIdReusePolicy] = None) -> str:
126+
reuse_id_policy: Optional[pb.OrchestrationIdReusePolicy] = None,
127+
tags: Optional[dict[str, str]] = None) -> str:
128128

129129
name = orchestrator if isinstance(orchestrator, str) else task.get_name(orchestrator)
130130

0 commit comments

Comments
 (0)