mirror of
https://github.com/2noise/ChatTTS.git
synced 2026-08-28 17:45:02 +08:00
chore(webui): remove redundant default=None
This commit is contained in:
@@ -248,12 +248,12 @@ def main():
|
||||
"--server_name", type=str, default="0.0.0.0", help="server name"
|
||||
)
|
||||
parser.add_argument("--server_port", type=int, default=8080, help="server port")
|
||||
parser.add_argument("--root_path", type=str, default=None, help="root path")
|
||||
parser.add_argument("--root_path", type=str, help="root path")
|
||||
parser.add_argument(
|
||||
"--custom_path", type=str, default=None, help="custom model path"
|
||||
"--custom_path", type=str, help="custom model path"
|
||||
)
|
||||
parser.add_argument(
|
||||
"--coef", type=str, default=None, help="custom dvae coefficient"
|
||||
"--coef", type=str, help="custom dvae coefficient"
|
||||
)
|
||||
args = parser.parse_args()
|
||||
|
||||
|
||||
Reference in New Issue
Block a user