Update vad_arguments.py

Fixed help comment mismatch with actual default value.
This commit is contained in:
Daniel Breedeveld
2024-09-07 12:09:46 +08:00
committed by GitHub
parent d98e252769
commit 6daa9baf68

View File

@@ -42,6 +42,6 @@ class VADHandlerArguments:
audio_enhancement: bool = field(
default=False,
metadata={
"help": "improves sound quality by applying techniques like noise reduction, equalization, and echo cancellation. Default is True."
"help": "improves sound quality by applying techniques like noise reduction, equalization, and echo cancellation. Default is False."
},
)