diff --git a/debug/gdbserver.py b/debug/gdbserver.py index 764d1d0f4..d0302fbe1 100755 --- a/debug/gdbserver.py +++ b/debug/gdbserver.py @@ -1913,8 +1913,8 @@ def test(self): bp = self.gdb.b("vTaskStartScheduler") self.gdb.c() self.gdb.command(f"delete {bp}") - # 'Current Execution' is still there before the scheduler has been started. - # Now there are 3 threads: Current Execution, Rx, Tx. + # 'Current Execution' is still there before the scheduler has been + # started. Now there are 3 threads: Current Execution, Rx, Tx. threads = self.gdb.threads() assertEqual(len(threads), 3)