Skip to content

Commit

Permalink
fix: port int
Browse files Browse the repository at this point in the history
  • Loading branch information
JarbasAl authored Jan 15, 2025
1 parent 24ca6eb commit 4dabf31
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ovos_tts_server/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ def main():
bind_gradio_service(server, engine, args.title, args.description,
args.info, args.badge, args.lang)
LOG.info("Gradio Started")
uvicorn.run(server, host=args.host, port=args.port)
uvicorn.run(server, host=args.host, port=int(args.port))


if __name__ == "__main__":
Expand Down

0 comments on commit 4dabf31

Please sign in to comment.