disable this linter error

This commit is contained in:
Adam Yoblick 2023-09-19 15:29:18 -05:00
parent 98032d8d7f
commit 9cc65eb123

View file

@ -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)])):