Skip to content

Commit

Permalink
fix .env boolean bug
Browse files Browse the repository at this point in the history
  • Loading branch information
kerrychu committed Jan 23, 2024
1 parent 42cc65c commit b9a3f4a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion jobs.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
JOB_FOLDER = "jobs"
JOB_FILE = "last_updated.json"
JOB_FILE_PATH = os.path.join(JOB_FOLDER, JOB_FILE)
ENABLE_DEBUG_MODE = bool(os.getenv("ENABLE_JOB_DEBUG_MODE"))
ENABLE_DEBUG_MODE = os.getenv("ENABLE_JOB_DEBUG_MODE").lower() == "true"
SLACK_WEBHOOK = os.getenv("SLACK_JOB_WEBHOOK")


Expand Down

0 comments on commit b9a3f4a

Please sign in to comment.