Skip to content

Commit a603bb0

Browse files
committed
Fix "project.py --help - typerror type argument unexpected" (#2223)
1 parent 6b8ff8f commit a603bb0

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

tools/project.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,9 +58,8 @@
5858

5959
parser.add_argument("-b",
6060
dest="build",
61-
action="store_true",
6261
default=False,
63-
type=argparse_dir_not_parent(ROOT),
62+
type=argparse_dir_not_parent(ROOT),
6463
help="use the mbed library build, instead of the sources")
6564

6665
group.add_argument("-L", "--list-tests",

0 commit comments

Comments
 (0)