converters: get rid of default=True for --half

This commit is contained in:
Cédric Deltheil 2023-09-11 16:10:14 +02:00 committed by Cédric Deltheil
parent 32cba1afd8
commit 9364c0ea1c
2 changed files with 2 additions and 2 deletions

View file

@ -76,7 +76,7 @@ def main() -> None:
" source path."
),
)
parser.add_argument("--half", action="store_true", default=True, help="Convert to half precision. Default: True")
parser.add_argument("--half", action="store_true", help="Convert to half precision. Default: True")
parser.add_argument(
"--verbose",
action="store_true",

View file

@ -116,7 +116,7 @@ def main() -> None:
" source path."
),
)
parser.add_argument("--half", action="store_true", default=True, help="Convert to half precision. Default: True")
parser.add_argument("--half", action="store_true", help="Convert to half precision. Default: True")
parser.add_argument(
"--verbose",
action="store_true",