[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.
This commit is contained in:
Hornwitser
2018-08-01 15:24:33 +02:00
committed by Rapptz
parent ed6451b9da
commit efb4ff850e
19 changed files with 86 additions and 73 deletions

View File

@ -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