From 9cc65eb1233edf4fdb3fc853fcabced1d5505fb1 Mon Sep 17 00:00:00 2001 From: Adam Yoblick Date: Tue, 19 Sep 2023 15:29:18 -0500 Subject: [PATCH] disable this linter error --- tests/debugpy/test_threads.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/debugpy/test_threads.py b/tests/debugpy/test_threads.py index 9ba49f4d6..8e44dbf4f 100644 --- a/tests/debugpy/test_threads.py +++ b/tests/debugpy/test_threads.py @@ -19,7 +19,7 @@ def code_to_debug(): import sys debuggee.setup() - stop = False + stop = False # noqa: F841 def worker(tid, offset): i = 0 @@ -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)])):