diff options
| author | 2018-02-13 16:41:19 +0000 | |
|---|---|---|
| committer | 2018-02-13 16:41:19 +0000 | |
| commit | e9cbf2eda417fdf2ea3e75211cbbd1bd3776045b (patch) | |
| tree | 577fd31ebbecb7787c8c7d114f11827dad5c7ac7 | |
| parent | fixed pylint errors (diff) | |
fixed more pylint
| -rw-r--r-- | bot/constants.py | 2 | ||||
| -rw-r--r-- | bot/formatter.py | 3 |
2 files changed, 2 insertions, 3 deletions
diff --git a/bot/constants.py b/bot/constants.py index d6c94511a..9030a100e 100644 --- a/bot/constants.py +++ b/bot/constants.py @@ -10,4 +10,4 @@ MODERATOR_ROLE = 267629731250176001 VERIFIED_ROLE = 352427296948486144 OWNER_ROLE = 267627879762755584 -HELP_PREFIX = "bot."
\ No newline at end of file +HELP_PREFIX = "bot." diff --git a/bot/formatter.py b/bot/formatter.py index 6b93ad4b7..8fc5a8482 100644 --- a/bot/formatter.py +++ b/bot/formatter.py @@ -7,13 +7,13 @@ Which falls under The MIT License. """ import itertools - from inspect import formatargspec, getfullargspec from discord.ext.commands import Command, HelpFormatter, Paginator from bot.constants import HELP_PREFIX + class Formatter(HelpFormatter): def __init__(self, *args, **kwargs): super().__init__(*args, **kwargs) @@ -94,4 +94,3 @@ class Formatter(HelpFormatter): self._paginator.add_line(ending_note) return self._paginator.pages -
\ No newline at end of file |