Skip to content

Commit

Permalink
linter
Browse files Browse the repository at this point in the history
Signed-off-by: Elena Kolevska <[email protected]>
  • Loading branch information
elena-kolevska committed Jan 9, 2025
1 parent f492e36 commit b70bc83
Showing 1 changed file with 11 additions and 2 deletions.
13 changes: 11 additions & 2 deletions ext/dapr-ext-workflow/tests/test_workflow_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,14 @@


class FakeTaskHubGrpcClient:
def schedule_new_orchestration(self, workflow, input, instance_id, start_at, reuse_id_policy: Union[pb.OrchestrationIdReusePolicy, None] = None):
def schedule_new_orchestration(
self,
workflow,
input,
instance_id,
start_at,
reuse_id_policy: Union[pb.OrchestrationIdReusePolicy, None] = None,
):
return mock_schedule_result

def get_orchestration_state(self, instance_id, fetch_payloads):
Expand All @@ -51,7 +58,9 @@ def raise_orchestration_event(
):
return mock_raise_event_result

def terminate_orchestration(self, instance_id: str, *, output: Union[Any, None] = None, recursive: bool = True):
def terminate_orchestration(
self, instance_id: str, *, output: Union[Any, None] = None, recursive: bool = True
):
return mock_terminate_result

def suspend_orchestration(self, instance_id: str):
Expand Down

0 comments on commit b70bc83

Please sign in to comment.