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 1112
1112
" UP008" , # https://docs.astral.sh/ruff/rules/super-call-with-parameters
1113
1113
" UP032" , # https://docs.astral.sh/ruff/rules/f-string
1114
1114
]
1115
- "./scripts/west_commands/simulate.py" = [
1116
- " I001" , # https://docs.astral.sh/ruff/rules/unsorted-imports
1117
- " UP008" , # https://docs.astral.sh/ruff/rules/super-call-with-parameters
1118
- ]
1119
1115
"./scripts/west_commands/spdx.py" = [
1120
1116
" E501" , # https://docs.astral.sh/ruff/rules/line-too-long
1121
1117
" F541" , # https://docs.astral.sh/ruff/rules/f-string-missing-placeholders
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