west: boards: Remove accidental comma to fix pylint warning
Remove a trailing comma that generated a single-element tuple and made pylint warn: scripts/west_commands/boards.py:50:8: W0106: Expression "(parser.add_argument(...), )" is assigned to nothing (expression-not-assigned) No functional change. Fixing pylint warnings for a CI check. Signed-off-by: Ulf Magnusson <Ulf.Magnusson@nordicsemi.no>
This commit is contained in:
parent
4c7926234b
commit
22274696a9
1 changed files with 1 additions and 1 deletions
|
@ -49,7 +49,7 @@ class Boards(WestCommand):
|
|||
# flags
|
||||
parser.add_argument('-f', '--format', default=default_fmt,
|
||||
help='''Format string to use to list each board;
|
||||
see FORMAT STRINGS below.'''),
|
||||
see FORMAT STRINGS below.''')
|
||||
|
||||
return parser
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue