Skip to content

Commit 7892592

Browse files
committed
lint
1 parent a263d28 commit 7892592

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/worker/test_update_with_start.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -355,7 +355,7 @@ def make_start_op(workflow_id: str):
355355
start_workflow_operation=start_op_3,
356356
)
357357
assert (await start_op_3.workflow_handle()).first_execution_run_id is not None
358-
with pytest.raises(WorkflowUpdateFailedError) as exc_info:
358+
with pytest.raises(WorkflowUpdateFailedError):
359359
await update_handle_3.result()
360360

361361
# Despite the update failure, the first execution run ID is set on the with_start_request,
@@ -488,7 +488,7 @@ async def test_update_with_start_client_outbound_interceptor(
488488
client: Client,
489489
):
490490
interceptor = SimpleClientInterceptor()
491-
client = Client(**{**client.config(), "interceptors": [interceptor]})
491+
client = Client(**{**client.config(), "interceptors": [interceptor]}) # type: ignore
492492

493493
async with new_worker(
494494
client,

0 commit comments

Comments
 (0)