Skip to content

Commit f39f403

Browse files
committed
format
Signed-off-by: Tim Li <ltim@uber.com>
1 parent 79e7327 commit f39f403

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

cadence/client.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -260,7 +260,9 @@ async def signal_with_start_workflow(
260260
options = _validate_and_apply_defaults(StartWorkflowOptions(**options_kwargs))
261261

262262
# Build the start workflow request
263-
start_request = await self._build_start_workflow_request(workflow, args, options)
263+
start_request = await self._build_start_workflow_request(
264+
workflow, args, options
265+
)
264266

265267
# Encode signal input
266268
signal_payload = None

tests/integration_tests/test_client.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -137,6 +137,7 @@ async def test_workflow_stub_start_and_describe(helper: CadenceHelper):
137137
f"task_start_to_close_timeout mismatch: expected {task_timeout.total_seconds()}s, got {task_timeout_seconds}s"
138138
)
139139

140+
140141
# trying parametrized test for table test
141142
@pytest.mark.parametrize(
142143
"test_case,workflow_id,start_first,expected_same_run",

0 commit comments

Comments
 (0)