File tree 2 files changed +2
-6
lines changed
2 files changed +2
-6
lines changed Original file line number Diff line number Diff line change 1128
1128
" UP008" , # https://docs.astral.sh/ruff/rules/super-call-with-parameters
1129
1129
" UP032" , # https://docs.astral.sh/ruff/rules/f-string
1130
1130
]
1131
- "./scripts/west_commands/simulate.py" = [
1132
- " I001" , # https://docs.astral.sh/ruff/rules/unsorted-imports
1133
- " UP008" , # https://docs.astral.sh/ruff/rules/super-call-with-parameters
1134
- ]
1135
1131
"./scripts/west_commands/spdx.py" = [
1136
1132
" E501" , # https://docs.astral.sh/ruff/rules/line-too-long
1137
1133
" 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