Skip to content

Commit

Permalink
fixup! dist/tools/bmp: set argument type
Browse files Browse the repository at this point in the history
  • Loading branch information
basilfx committed Jan 12, 2025
1 parent c3a92e6 commit ab1f48c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dist/tools/bmp/bmp.py
Original file line number Diff line number Diff line change
Expand Up @@ -304,7 +304,7 @@ def parse_args():
parser.add_argument('--tpwr', action='store_true', help='enable target power')
parser.add_argument('--serial', help='choose specific probe by serial number')
parser.add_argument('--port', help='choose specific probe by port (overrides auto selection)')
parser.add_argument('--attach', help='choose specific target by number', type=int, default='1')
parser.add_argument('--attach', help='choose specific target by number', type=int, default=1)
parser.add_argument('--gdb-path', help='path to GDB', default='gdb-multiarch')
parser.add_argument('--bmp-version', help='choose specific firmware version', default='auto')
parser.add_argument('--term-cmd', help='serial terminal command',
Expand Down

0 comments on commit ab1f48c

Please sign in to comment.