Skip to content

Commit

Permalink
✨ 🍰 ✨
Browse files Browse the repository at this point in the history
  • Loading branch information
xenein committed Aug 6, 2023
1 parent 6d3aa43 commit e70fddb
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions web.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,9 @@ def handle_post():


if __name__ == "__main__":
server = threading.Thread(target=bottle.run,
kwargs={"host": "localhost", "port": 22222})
server = threading.Thread(
target=bottle.run, kwargs={"host": "localhost", "port": 22222}
)
server.start()
webbrowser.open("http://localhost:22222")

webbrowser.open("http://localhost:22222")

0 comments on commit e70fddb

Please sign in to comment.