mirror of
https://github.com/microsoft/debugpy.git
synced 2025-12-23 08:48:12 +00:00
disable this linter error
This commit is contained in:
parent
98032d8d7f
commit
9cc65eb123
1 changed files with 2 additions and 2 deletions
|
|
@ -19,7 +19,7 @@ def test_thread_count(pyfile, target, run, count):
|
|||
import sys
|
||||
|
||||
debuggee.setup()
|
||||
stop = False
|
||||
stop = False # noqa: F841
|
||||
|
||||
def worker(tid, offset):
|
||||
i = 0
|
||||
|
|
@ -35,7 +35,7 @@ def test_thread_count(pyfile, target, run, count):
|
|||
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)])):
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue