aboutsummaryrefslogtreecommitdiffstats
path: root/bot/constants.py
diff options
context:
space:
mode:
authorGravatar kwzrd <[email protected]>2020-03-31 17:35:48 +0200
committerGravatar kwzrd <[email protected]>2020-03-31 18:04:33 +0200
commit3902f9dcd81fbd8cc8c3082e20608e4b16638c77 (patch)
treed47fa0b1b5baa8122ca8b482340a6058c7e0badf /bot/constants.py
parentRefactor: capitalize AssetType enum members (diff)
Refactor: adjust docstrings based on feedback
* Capitalize month names * Add backticks to `sha` attr reference * Avoid misusing the term 'poll' Co-authored-by: MarkKoz <[email protected]>
Diffstat (limited to 'bot/constants.py')
-rw-r--r--bot/constants.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/constants.py b/bot/constants.py
index 34bbf87f..22ea9177 100644
--- a/bot/constants.py
+++ b/bot/constants.py
@@ -81,7 +81,7 @@ class Client(NamedTuple):
token = environ.get("SEASONALBOT_TOKEN")
sentry_dsn = environ.get("SEASONALBOT_SENTRY_DSN")
debug = environ.get("SEASONALBOT_DEBUG", "").lower() == "true"
- # Override seasonal locks: 1 (january) to 12 (december)
+ # Override seasonal locks: 1 (January) to 12 (December)
month_override = int(environ["MONTH_OVERRIDE"]) if "MONTH_OVERRIDE" in environ else None