diff options
| author | 2018-02-13 16:34:15 +0000 | |
|---|---|---|
| committer | 2018-02-13 16:34:15 +0000 | |
| commit | f6fe8c862e89be441ff8445056f5e9e176e16591 (patch) | |
| tree | 8f3abee031406a1bdd166281cf98583436462d3c | |
| parent | reordered imports on __main__.py (diff) | |
fixed pylint errors
| -rw-r--r-- | bot/formatter.py | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/bot/formatter.py b/bot/formatter.py index 56f25fbd6..6b93ad4b7 100644 --- a/bot/formatter.py +++ b/bot/formatter.py @@ -8,8 +8,10 @@ Which falls under The MIT License. import itertools -from discord.ext.commands import HelpFormatter, Paginator, Command -from inspect import getfullargspec, formatargspec +from inspect import formatargspec, getfullargspec + +from discord.ext.commands import Command, HelpFormatter, Paginator + from bot.constants import HELP_PREFIX class Formatter(HelpFormatter): @@ -91,4 +93,5 @@ class Formatter(HelpFormatter): ending_note = "# "+ending_note.replace("\n", "\n# ") self._paginator.add_line(ending_note) - return self._paginator.pages
\ No newline at end of file + return self._paginator.pages +
\ No newline at end of file |