From efb4ff850ea476d2aabc8ab4069a6d52ad602f42 Mon Sep 17 00:00:00 2001 From: Hornwitser Date: Wed, 1 Aug 2018 15:24:33 +0200 Subject: [lint] Fix import order Reorder imports to be consistenly grouped by standard library, third party library, and local modules in that order thoughout the library. --- discord/shard.py | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) (limited to 'discord/shard.py') diff --git a/discord/shard.py b/discord/shard.py index eb9727b2..6fd4e3cb 100644 --- a/discord/shard.py +++ b/discord/shard.py @@ -24,6 +24,12 @@ FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. """ +import asyncio +import itertools +import logging + +import websockets + from .state import AutoShardedConnectionState from .client import Client from .gateway import * @@ -31,11 +37,6 @@ from .errors import ClientException, InvalidArgument from . import utils from .enums import Status -import asyncio -import logging -import websockets -import itertools - log = logging.getLogger(__name__) class Shard: -- cgit v1.2.3