From 01e652ec6a5ff90e37e1d67084a11591884a858b Mon Sep 17 00:00:00 2001 From: Tim Newsome Date: Thu, 29 Jun 2023 16:34:16 -0700 Subject: debug: pylint fix. --- debug/gdbserver.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/debug/gdbserver.py b/debug/gdbserver.py index 764d1d0..d0302fb 100755 --- a/debug/gdbserver.py +++ b/debug/gdbserver.py @@ -1913,8 +1913,8 @@ class FreeRtosTest(GdbTest): 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) -- cgit v1.1