aboutsummaryrefslogtreecommitdiff
path: root/discord/ext
diff options
context:
space:
mode:
authorHornwitser <[email protected]>2018-06-12 05:05:00 +0200
committerRapptz <[email protected]>2018-08-22 21:43:50 -0400
commitd58fc0cceed63b9536a2151168b0e40144ba5d81 (patch)
tree05ad3b3f98c107f08d9b186458333469f006a9b5 /discord/ext
parentFix Reaction.users documentation (diff)
downloaddiscord.py-d58fc0cceed63b9536a2151168b0e40144ba5d81.tar.xz
discord.py-d58fc0cceed63b9536a2151168b0e40144ba5d81.zip
[lint] Remove unused imports
Left over from various refactoring and rewrites.
Diffstat (limited to 'discord/ext')
-rw-r--r--discord/ext/commands/bot.py2
-rw-r--r--discord/ext/commands/context.py1
-rw-r--r--discord/ext/commands/converter.py2
-rw-r--r--discord/ext/commands/formatter.py1
4 files changed, 1 insertions, 5 deletions
diff --git a/discord/ext/commands/bot.py b/discord/ext/commands/bot.py
index b6556592..71ec5189 100644
--- a/discord/ext/commands/bot.py
+++ b/discord/ext/commands/bot.py
@@ -33,7 +33,7 @@ import sys
import traceback
import re
-from .core import GroupMixin, Command, command
+from .core import GroupMixin, Command
from .view import StringView
from .context import Context
from .errors import CommandNotFound, CommandError
diff --git a/discord/ext/commands/context.py b/discord/ext/commands/context.py
index dfe1a9ed..de37a1a7 100644
--- a/discord/ext/commands/context.py
+++ b/discord/ext/commands/context.py
@@ -23,7 +23,6 @@ FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
DEALINGS IN THE SOFTWARE.
"""
-import asyncio
import discord.abc
import discord.utils
diff --git a/discord/ext/commands/converter.py b/discord/ext/commands/converter.py
index 72b2cbf8..bb3a5708 100644
--- a/discord/ext/commands/converter.py
+++ b/discord/ext/commands/converter.py
@@ -25,12 +25,10 @@ DEALINGS IN THE SOFTWARE.
"""
import discord
-import asyncio
import re
import inspect
from .errors import BadArgument, NoPrivateMessage
-from .view import StringView
__all__ = [ 'Converter', 'MemberConverter', 'UserConverter',
'TextChannelConverter', 'InviteConverter', 'RoleConverter',
diff --git a/discord/ext/commands/formatter.py b/discord/ext/commands/formatter.py
index f65e29dc..f23a697b 100644
--- a/discord/ext/commands/formatter.py
+++ b/discord/ext/commands/formatter.py
@@ -26,7 +26,6 @@ DEALINGS IN THE SOFTWARE.
import itertools
import inspect
-import asyncio
from .core import GroupMixin, Command
from .errors import CommandError