Skip to content

Commit 2a1d099

Browse files
committed
ignore new linter warning
1 parent 22b47e6 commit 2a1d099

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/durabletask/test_orchestration_e2e.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -323,7 +323,7 @@ def orchestrator(ctx: task.OrchestrationContext, input: int):
323323
result = yield ctx.wait_for_external_event("my_event")
324324
if not ctx.is_replaying:
325325
# NOTE: Real orchestrations should never interact with nonlocal variables like this.
326-
nonlocal all_results
326+
nonlocal all_results # noqa: F824
327327
all_results.append(result)
328328

329329
if len(all_results) <= 4:

0 commit comments

Comments
 (0)