Skip to content

Commit

Permalink
disable this linter error
Browse files Browse the repository at this point in the history
  • Loading branch information
AdamYoblick committed Sep 19, 2023
1 parent 98032d8 commit 9cc65eb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/debugpy/test_threads.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ def code_to_debug():
import sys

debuggee.setup()
stop = False
stop = False # noqa: F841

def worker(tid, offset):
i = 0
Expand All @@ -35,7 +35,7 @@ def worker(tid, offset):
threads.append(thread)
thread.start()
print("check here") # @bp
stop = True
stop = True # noqa: F841

with debug.Session() as session:
with run(session, target(code_to_debug, args=[str(count)])):
Expand Down

0 comments on commit 9cc65eb

Please sign in to comment.