Skip to content

Commit

Permalink
Lint: Resolve E501 line length warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
rafasaurus committed Jan 29, 2025
1 parent bc1efcb commit 3317fd2
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Tools/scripts/uploader.py
Original file line number Diff line number Diff line change
Expand Up @@ -1134,7 +1134,8 @@ def main():
)
parser.add_argument('--download', action='store_true', default=False, help='download firmware from board')
parser.add_argument('--identify', action="store_true", help="Do not flash firmware; simply dump information about board")
parser.add_argument('--verify', action="store_true", help="Do not flash firmware; verify that the firmware on the board matches the supplied firmware")
parser.add_argument('--verify', action="store_true",
help="Do not flash firmware; verify that the firmware on the board matches the supplied firmware")
parser.add_argument('--no-extf', action="store_true", help="Do not attempt external flash operations")
parser.add_argument('--erase-extflash', type=lambda x: int(x, 0), default=None,
help="Erase sectors containing specified amount of bytes from ext flash")
Expand Down

0 comments on commit 3317fd2

Please sign in to comment.