Skip to content

Commit

Permalink
fixed a typing issue
Browse files Browse the repository at this point in the history
  • Loading branch information
immervoll committed Jun 23, 2022
1 parent 1daa413 commit 3da1de7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
if is_docker():
TOKEN = os.environ['TOKEN']
PREFIX = os.environ['PREFIX']
SERVERADDRESS = (os.environ['IP'], os.environ["PORT"])
SERVERADDRESS = (os.environ['IP'], int(os.environ["PORT"]))

else:
with open("configuration.json", "r") as config:
Expand Down

0 comments on commit 3da1de7

Please sign in to comment.