Skip to content

Commit

Permalink
Prevvious PR append
Browse files Browse the repository at this point in the history
I often forget that the double or check does not work. Just check for a True string.
  • Loading branch information
zediious committed Jun 9, 2024
1 parent 3a7c117 commit 53e587f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion config/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -257,7 +257,7 @@
# ** Settings for "raptorbot" app **
DISCORD_BOT_TOKEN: str = getenv('DISCORD_BOT_TOKEN')
DISCORD_BOT_DESCRIPTION: str = getenv('DISCORD_BOT_DESCRIPTION')
RUN_BOT: bool = True if getenv('RUN_BOT') == 'True' or 'true' else False
RUN_BOT: bool = True if getenv('RUN_BOT') == 'True' else False

# ** Celery Settings **
CELERY_BEAT_SCHEDULE = {
Expand Down

0 comments on commit 53e587f

Please sign in to comment.