Skip to content

Commit

Permalink
fix: DUMP_ID not integer
Browse files Browse the repository at this point in the history
  • Loading branch information
X-Gorn committed Jun 9, 2024
1 parent d00993d commit 1a0412c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Bot/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ class Config(object):
BotCommand('broadcast', 'broadcast message')
]

DUMP_ID = os.environ.get("DUMP_ID")
DUMP_ID = int(os.environ.get("DUMP_ID"))

BOT_TOKEN = os.environ.get("BOT_TOKEN", "")

Expand Down

0 comments on commit 1a0412c

Please sign in to comment.