diff options
| -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 |