@@ -1344,6 +1344,7 @@ def addSelectionArgs(parser: argparse.ArgumentParser) -> argparse.ArgumentParser
13441344 "--dest" ,
13451345 help = "The destination node id for any sent commands, if not set '^all' or '^local' is assumed as appropriate" ,
13461346 default = None ,
1347+ nargs = 1 ,
13471348 metavar = ("!XXXXXXXX" , "0xXXXXXXXX" ),
13481349 )
13491350
@@ -1648,6 +1649,7 @@ def addRemoteActionArgs(parser: argparse.ArgumentParser) -> argparse.ArgumentPar
16481649 "You need pass the destination ID as argument, like "
16491650 "this: '--traceroute !ba4bf9d0' "
16501651 "Only nodes with a shared channel can be traced." ,
1652+ nargs = 1 ,
16511653 metavar = ("!XXXXXXXX" , "0xXXXXXXXX" ),
16521654 )
16531655
@@ -1728,26 +1730,31 @@ def addRemoteAdminArgs(parser: argparse.ArgumentParser) -> argparse.ArgumentPars
17281730 group .add_argument (
17291731 "--remove-node" ,
17301732 help = "Tell the destination node to remove a specific node from its DB, by node number or ID" ,
1733+ nargs = 1 ,
17311734 metavar = ("!XXXXXXXX" , "0xXXXXXXXX" )
17321735 )
17331736 group .add_argument (
17341737 "--set-favorite-node" ,
17351738 help = "Tell the destination node to set the specified node to be favorited on the NodeDB on the devicein its DB, by number or ID" ,
1739+ nargs = 1 ,
17361740 metavar = ("!XXXXXXXX" , "0xXXXXXXXX" )
17371741 )
17381742 group .add_argument (
17391743 "--remove-favorite-node" ,
17401744 help = "Tell the destination node to set the specified node to be un-favorited on the NodeDB on the device, by number or ID" ,
1745+ nargs = 1 ,
17411746 metavar = ("!XXXXXXXX" , "0xXXXXXXXX" )
17421747 )
17431748 group .add_argument (
17441749 "--set-ignored-node" ,
17451750 help = "Tell the destination node to set the specified node to be ignored on the NodeDB on the devicein its DB, by number or ID" ,
1751+ nargs = 1 ,
17461752 metavar = ("!XXXXXXXX" , "0xXXXXXXXX" )
17471753 )
17481754 group .add_argument (
17491755 "--remove-ignored-node" ,
17501756 help = "Tell the destination node to set the specified node to be un-ignored on the NodeDB on the device, by number or ID" ,
1757+ nargs = 1 ,
17511758 metavar = ("!XXXXXXXX" , "0xXXXXXXXX" )
17521759 )
17531760 group .add_argument (
0 commit comments