Skip to content

Commit

Permalink
Forgot the main issue, I'm silly
Browse files Browse the repository at this point in the history
  • Loading branch information
ctmbl committed Oct 19, 2023
1 parent 924bcd6 commit 280976f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/bot/root_pythia_bot.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@


CHANNEL_ID = getenv("CHANNEL_ID")
if CHANNEL_ID.isnumeric():
if CHANNEL_ID is not None and CHANNEL_ID.isnumeric():
CHANNEL_ID = int(CHANNEL_ID)
else:
logging.warning(
Expand Down

0 comments on commit 280976f

Please sign in to comment.