aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--bot/constants.py2
-rw-r--r--bot/formatter.py3
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