File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -358,9 +358,9 @@ async def handle_stopped_event(self):
358
358
event = await self .stopped_queue .get ()
359
359
req = {"seq" : event ["seq" ] + 1 , "type" : "request" , "command" : "threads" }
360
360
rep = await self ._forward_message (req )
361
- for t in rep ["body" ]["threads" ]:
362
- if self ._accept_stopped_thread (t ["name" ]):
363
- self .stopped_threads .add (t ["id" ])
361
+ for thread in rep ["body" ]["threads" ]:
362
+ if self ._accept_stopped_thread (thread ["name" ]):
363
+ self .stopped_threads .add (thread ["id" ])
364
364
self .event_callback (event )
365
365
366
366
@property
Original file line number Diff line number Diff line change @@ -465,8 +465,8 @@ def init_io(self):
465
465
466
466
handler .stream = TextIOWrapper (
467
467
FileIO (
468
- sys .stderr ._original_stdstream_copy ,
469
- "w" , # type:ignore[attr-defined]
468
+ sys .stderr ._original_stdstream_copy , # type:ignore[attr-defined]
469
+ "w" ,
470
470
)
471
471
)
472
472
if self .displayhook_class :
You can’t perform that action at this time.
0 commit comments