[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

@ -17,6 +17,9 @@ __license__ = 'MIT'
__copyright__ = 'Copyright 2015-2017 Rapptz'
__version__ = '1.0.0a'
from collections import namedtuple
import logging
from .client import Client, AppInfo
from .user import User, ClientUser, Profile
from .emoji import Emoji, PartialEmoji
@ -37,7 +40,6 @@ from .object import Object
from .reaction import Reaction
from . import utils, opus, abc
from .enums import *
from collections import namedtuple
from .embeds import Embed
from .shard import AutoShardedClient
from .player import *
@ -46,8 +48,6 @@ from .voice_client import VoiceClient
from .audit_logs import AuditLogChanges, AuditLogEntry, AuditLogDiff
from .raw_models import *
import logging
VersionInfo = namedtuple('VersionInfo', 'major minor micro releaselevel serial')
version_info = VersionInfo(major=1, minor=0, micro=0, releaselevel='alpha', serial=0)