aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar univ <univ@archdevPC>2018-02-13 15:39:46 +0000
committerGravatar univ <univ@archdevPC>2018-02-13 15:39:46 +0000
commitb46e0483fb8691cd52c0efed2d2d74cc19b0fa34 (patch)
tree557dd6031a7fbb43a31e085d7ec4b4c0645535e6
parentI'm not even gonna check that error (diff)
added formatter.py
-rw-r--r--bot/cogs/formatter.py8
1 files changed, 8 insertions, 0 deletions
diff --git a/bot/cogs/formatter.py b/bot/cogs/formatter.py
new file mode 100644
index 000000000..81a4901de
--- /dev/null
+++ b/bot/cogs/formatter.py
@@ -0,0 +1,8 @@
+# coding=utf-8
+from discord.ext.commands import HelpFormatter, Paginator
+
+class Formatter(HelpFormatter):
+ def __init__(self, *args, **kwargs):
+ super().__init__(*args, **kwargs)
+
+ \ No newline at end of file