aboutsummaryrefslogtreecommitdiffstats
path: root/bot/seasons/christmas/adventofcode.py
diff options
context:
space:
mode:
authorGravatar kosayoda <[email protected]>2019-09-11 23:21:17 +0800
committerGravatar kosayoda <[email protected]>2019-09-11 23:21:17 +0800
commitbfdfd5d4836c5f1a261388280f109b09e860738f (patch)
tree62b632d778c78b1edf6cacafa18996a6b2c33077 /bot/seasons/christmas/adventofcode.py
parentAdd more uwu conversions (diff)
parentMerge pull request #269 from python-discord/hacktoberfest-update (diff)
Merge branch 'text-modify-embeds' of github.com:python-discord/seasonalbot into text-modify-embeds
Diffstat (limited to 'bot/seasons/christmas/adventofcode.py')
-rw-r--r--bot/seasons/christmas/adventofcode.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/seasons/christmas/adventofcode.py b/bot/seasons/christmas/adventofcode.py
index a9e72805..d2894ec4 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: