Skip to content

Commit f7676f9

Browse files
committed
Linter fix
1 parent 5fd2a0e commit f7676f9

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

tests/durabletask-azuremanaged/test_dts_orchestration_e2e.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -535,7 +535,7 @@ def empty_orchestrator(ctx: task.OrchestrationContext, _):
535535

536536

537537
def test_new_uuid():
538-
def noop(_: task.ActivityContext, _):
538+
def noop(_: task.ActivityContext, _1):
539539
pass
540540

541541
def empty_orchestrator(ctx: task.OrchestrationContext, _):

tests/durabletask/test_orchestration_e2e.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -502,7 +502,7 @@ def empty_orchestrator(ctx: task.OrchestrationContext, _):
502502

503503

504504
def test_new_uuid():
505-
def noop(_: task.ActivityContext, _):
505+
def noop(_: task.ActivityContext, _1):
506506
pass
507507

508508
def empty_orchestrator(ctx: task.OrchestrationContext, _):

0 commit comments

Comments
 (0)