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:
Ulf Magnusson 2019-09-02 15:20:54 +02:00 committed by Anas Nashif
commit 22274696a9

View file

@ -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