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
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -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`)",
) )