File tree Expand file tree Collapse file tree 2 files changed +2
-6
lines changed Expand file tree Collapse file tree 2 files changed +2
-6
lines changed Original file line number Diff line number Diff line change 1117
1117
" UP008" , # https://docs.astral.sh/ruff/rules/super-call-with-parameters
1118
1118
" UP032" , # https://docs.astral.sh/ruff/rules/f-string
1119
1119
]
1120
- "./scripts/west_commands/simulate.py" = [
1121
- " I001" , # https://docs.astral.sh/ruff/rules/unsorted-imports
1122
- " UP008" , # https://docs.astral.sh/ruff/rules/super-call-with-parameters
1123
- ]
1124
1120
"./scripts/west_commands/spdx.py" = [
1125
1121
" F541" , # https://docs.astral.sh/ruff/rules/f-string-missing-placeholders
1126
1122
" I001" , # https://docs.astral.sh/ruff/rules/unsorted-imports
Original file line number Diff line number Diff line change 2
2
#
3
3
# SPDX-License-Identifier: Apache-2.0
4
4
5
- from west .commands import WestCommand
6
5
from run_common import add_parser_common , do_run_common
6
+ from west .commands import WestCommand
7
7
8
8
EXPORT_DESCRIPTION = '''\
9
9
Simulate the board on a runner of choice using generated artifacts.
13
13
class Simulate (WestCommand ):
14
14
15
15
def __init__ (self ):
16
- super (Simulate , self ).__init__ (
16
+ super ().__init__ (
17
17
'simulate' ,
18
18
# Keep this in sync with the string in west-commands.yml.
19
19
'simulate board' ,
You can’t perform that action at this time.
0 commit comments