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/state.py | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) (limited to 'discord/state.py') diff --git a/discord/state.py b/discord/state.py index f6617be6..5d23fe86 100644 --- a/discord/state.py +++ b/discord/state.py @@ -24,6 +24,16 @@ FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. """ +import asyncio +from collections import deque, namedtuple, OrderedDict +import copy +import datetime +import enum +import itertools +import logging +import math +import weakref + from .guild import Guild from .activity import _ActivityTag from .user import User, ClientUser @@ -38,14 +48,6 @@ from .enums import ChannelType, try_enum, Status from . import utils from .embeds import Embed -from collections import deque, namedtuple, OrderedDict -import copy, enum, math -import datetime -import asyncio -import logging -import weakref -import itertools - class ListenerType(enum.Enum): chunk = 0 -- cgit v1.2.3