From cc00c74280dee40ca3e113f20ff087e433834250 Mon Sep 17 00:00:00 2001 From: Yuta Hayashibe Date: Sun, 2 Oct 2022 21:37:27 +0900 Subject: [PATCH] Moved --- whispering/cli.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/whispering/cli.py b/whispering/cli.py index 0e60596..9e4ddc8 100644 --- a/whispering/cli.py +++ b/whispering/cli.py @@ -144,6 +144,10 @@ def get_opts() -> argparse.Namespace: "--allow-padding", action="store_true", ) + group_ctx.add_argument( + "--no-vad", + action="store_true", + ) group_misc = parser.add_argument_group("Other options") group_misc.add_argument( @@ -157,10 +161,6 @@ def get_opts() -> argparse.Namespace: default=160, help="Number of operation unit", ) - group_misc.add_argument( - "--no-vad", - action="store_true", - ) group_misc.add_argument( "--mode", choices=[v.value for v in Mode],