88
99from textwrap import dedent
1010
11- from west .commands import WestCommand
12-
1311from run_common import add_parser_common , do_run_common
12+ from west .commands import WestCommand
1413
1514
1615class Debug (WestCommand ):
1716
1817 def __init__ (self ):
19- super (Debug , self ).__init__ (
18+ super ().__init__ (
2019 'debug' ,
2120 # Keep this in sync with the string in west-commands.yml.
2221 'flash and interactively debug a Zephyr application' ,
@@ -37,7 +36,7 @@ def do_run(self, my_args, runner_args):
3736class DebugServer (WestCommand ):
3837
3938 def __init__ (self ):
40- super (DebugServer , self ).__init__ (
39+ super ().__init__ (
4140 'debugserver' ,
4241 # Keep this in sync with the string in west-commands.yml.
4342 'connect to board and launch a debug server' ,
@@ -61,7 +60,7 @@ def do_run(self, my_args, runner_args):
6160class Attach (WestCommand ):
6261
6362 def __init__ (self ):
64- super (Attach , self ).__init__ (
63+ super ().__init__ (
6564 'attach' ,
6665 # Keep this in sync with the string in west-commands.yml.
6766 'interactively debug a board' ,
@@ -79,7 +78,7 @@ def do_run(self, my_args, runner_args):
7978class Rtt (WestCommand ):
8079
8180 def __init__ (self ):
82- super (Rtt , self ).__init__ (
81+ super ().__init__ (
8382 'rtt' ,
8483 # Keep this in sync with the string in west-commands.yml.
8584 'open an rtt shell' ,
0 commit comments