diff options
author | 2019-09-11 11:12:37 -0400 | |
---|---|---|
committer | 2019-09-11 11:12:37 -0400 | |
commit | a6a1939dc9917f59ee75f138757a2e4ab48742d1 (patch) | |
tree | 0673794db3c19d661cd8dd39141772c4d7140460 /bot/seasons/christmas/adventofcode.py | |
parent | Lint remaining files (diff) | |
parent | Merge pull request #269 from python-discord/hacktoberfest-update (diff) |
Merge branch 'master' into flake8-annotations
Diffstat (limited to 'bot/seasons/christmas/adventofcode.py')
-rw-r--r-- | bot/seasons/christmas/adventofcode.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/seasons/christmas/adventofcode.py b/bot/seasons/christmas/adventofcode.py index 5938ccbe..6609387e 100644 --- a/bot/seasons/christmas/adventofcode.py +++ b/bot/seasons/christmas/adventofcode.py @@ -359,7 +359,7 @@ class AdventOfCode(commands.Cog): ) async def _check_n_entries(self, ctx: commands.Context, number_of_people_to_display: int) -> int: - """Check for n > max_entries and n <= 0""" + """Check for n > max_entries and n <= 0.""" max_entries = AocConfig.leaderboard_max_displayed_members author = ctx.message.author if not 0 <= number_of_people_to_display <= max_entries: |