fix(calibrate): fix calibrate arms option type. should be str not int (#418)
Co-authored-by: Remi <remi.cadene@huggingface.co>
This commit is contained in:
parent
1072a055db
commit
b0b8612eff
|
@ -739,7 +739,7 @@ if __name__ == "__main__":
|
||||||
parser_calib = subparsers.add_parser("calibrate", parents=[base_parser])
|
parser_calib = subparsers.add_parser("calibrate", parents=[base_parser])
|
||||||
parser_calib.add_argument(
|
parser_calib.add_argument(
|
||||||
"--arms",
|
"--arms",
|
||||||
type=int,
|
type=str,
|
||||||
nargs="*",
|
nargs="*",
|
||||||
help="List of arms to calibrate (e.g. `--arms left_follower right_follower left_leader`)",
|
help="List of arms to calibrate (e.g. `--arms left_follower right_follower left_leader`)",
|
||||||
)
|
)
|
||||||
|
|
Loading…
Reference in New Issue