From e9cbf2eda417fdf2ea3e75211cbbd1bd3776045b Mon Sep 17 00:00:00 2001 From: Sam W Date: Tue, 13 Feb 2018 16:41:19 +0000 Subject: fixed more pylint --- bot/constants.py | 2 +- 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 -- cgit v1.2.3