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:
Jack Vial
2024-09-06 08:44:31 -04:00
committed by GitHub
parent 1072a055db
commit b0b8612eff

View File

@@ -739,7 +739,7 @@ if __name__ == "__main__":
parser_calib = subparsers.add_parser("calibrate", parents=[base_parser])
parser_calib.add_argument(
"--arms",
type=int,
type=str,
nargs="*",
help="List of arms to calibrate (e.g. `--arms left_follower right_follower left_leader`)",
)