diff options
author | 2020-11-30 01:38:11 +0100 | |
---|---|---|
committer | 2020-11-30 01:38:11 +0100 | |
commit | c352c80cf97620e715ee55184b54d1609312c76b (patch) | |
tree | e5fa568d8a212c3147fa5b84e36ada4903507de4 /bot/constants.py | |
parent | Set correct channel ID as default for AoC channel (diff) |
Fix docstrings and add a few explanatory comments
Diffstat (limited to 'bot/constants.py')
-rw-r--r-- | bot/constants.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bot/constants.py b/bot/constants.py index 00d75a3f..cb5a91cc 100644 --- a/bot/constants.py +++ b/bot/constants.py @@ -40,8 +40,8 @@ def _parse_aoc_leaderboard_env() -> Dict[str, AdventOfCodeLeaderboard]: Parse the environment variable containing leaderboard information. A leaderboard should be specified in the format `id,session,join_code`, - without the backticks. If more than leaderboard needs to be added to the - constants, separate the individual leaderboards with `::`. + without the backticks. If more than one leaderboard needs to be added to + the constant, separate the individual leaderboards with `::`. Example ENV: `id1,session1,join_code1::id2,session2,join_code2` """ |