Skip to content

Commit

Permalink
chore(webui): remove redundant default=None
Browse files Browse the repository at this point in the history
  • Loading branch information
fumiama committed Oct 17, 2024
1 parent 806b035 commit 799d633
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions examples/web/webui.py
Original file line number Diff line number Diff line change
Expand Up @@ -248,12 +248,12 @@ def make_audio(autoplay, stream):
"--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()

Expand Down

0 comments on commit 799d633

Please sign in to comment.