Skip to content

Commit

Permalink
Run ruff --fix
Browse files Browse the repository at this point in the history
  • Loading branch information
zanieb committed Apr 24, 2023
1 parent 6374617 commit a26d2ea
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/workers/test_base_worker.py
Original file line number Diff line number Diff line change
Expand Up @@ -369,11 +369,11 @@ def get_client_spy(*args, **kwargs):
def test_flow():
pass

create_run_with_deployment = (
lambda state: orion_client.create_flow_run_from_deployment(
def create_run_with_deployment(state):
return orion_client.create_flow_run_from_deployment(
worker_deployment_wq1.id, state=state
)
)

await create_run_with_deployment(
Scheduled(scheduled_time=pendulum.now("utc").subtract(days=1))
)
Expand Down

0 comments on commit a26d2ea

Please sign in to comment.