diff options
author | 2019-09-05 18:35:04 -0400 | |
---|---|---|
committer | 2019-09-05 18:35:04 -0400 | |
commit | d982254a79ca3e34c9f50e072a925fe6b8a12ed1 (patch) | |
tree | 689691b7ede87b0b5202e4a5844c4a06b179a471 /bot/seasons/christmas/adventofcode.py | |
parent | Update Snakes and Ladders (diff) |
Fix misconfigured flake8 so docstrings are properly linted
Relint
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 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: |