Skip to content

Commit b70bc83

Browse files
linter
Signed-off-by: Elena Kolevska <[email protected]>
1 parent f492e36 commit b70bc83

File tree

1 file changed

+11
-2
lines changed

1 file changed

+11
-2
lines changed

ext/dapr-ext-workflow/tests/test_workflow_client.py

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,14 @@
3232

3333

3434
class FakeTaskHubGrpcClient:
35-
def schedule_new_orchestration(self, workflow, input, instance_id, start_at, reuse_id_policy: Union[pb.OrchestrationIdReusePolicy, None] = None):
35+
def schedule_new_orchestration(
36+
self,
37+
workflow,
38+
input,
39+
instance_id,
40+
start_at,
41+
reuse_id_policy: Union[pb.OrchestrationIdReusePolicy, None] = None,
42+
):
3643
return mock_schedule_result
3744

3845
def get_orchestration_state(self, instance_id, fetch_payloads):
@@ -51,7 +58,9 @@ def raise_orchestration_event(
5158
):
5259
return mock_raise_event_result
5360

54-
def terminate_orchestration(self, instance_id: str, *, output: Union[Any, None] = None, recursive: bool = True):
61+
def terminate_orchestration(
62+
self, instance_id: str, *, output: Union[Any, None] = None, recursive: bool = True
63+
):
5564
return mock_terminate_result
5665

5766
def suspend_orchestration(self, instance_id: str):

0 commit comments

Comments
 (0)