fix invalid default value for --half in help

This commit is contained in:
Pierre Chapuis 2024-01-16 15:15:52 +01:00
parent 2b977bc69e
commit 94a918a474
3 changed files with 3 additions and 3 deletions

View file

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

View file

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

View file

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