diff options
| author | Rapptz <[email protected]> | 2017-04-18 04:22:35 -0400 |
|---|---|---|
| committer | Rapptz <[email protected]> | 2017-04-18 04:22:35 -0400 |
| commit | 1fc08bc5a2ad8bd8aba7b98c37eb6e9deeaa61c2 (patch) | |
| tree | 932ace1acd9ca51117876241a6710f61015a3378 /discord/gateway.py | |
| parent | Properly cleanup of VoiceClients in cache. (diff) | |
| download | discord.py-1fc08bc5a2ad8bd8aba7b98c37eb6e9deeaa61c2.tar.xz discord.py-1fc08bc5a2ad8bd8aba7b98c37eb6e9deeaa61c2.zip | |
Remove unused imports.
Diffstat (limited to 'discord/gateway.py')
| -rw-r--r-- | discord/gateway.py | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/discord/gateway.py b/discord/gateway.py index f8e50061..34a9eaf1 100644 --- a/discord/gateway.py +++ b/discord/gateway.py @@ -28,14 +28,12 @@ import sys import time import websockets import asyncio -import aiohttp from . import utils, compat -from .enums import Status, try_enum from .game import Game -from .errors import GatewayNotFound, ConnectionClosed, InvalidArgument +from .errors import ConnectionClosed, InvalidArgument import logging -import zlib, time, json +import zlib, json from collections import namedtuple import threading import struct |