[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:
@ -24,6 +24,17 @@ FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
||||
DEALINGS IN THE SOFTWARE.
|
||||
"""
|
||||
|
||||
import asyncio
|
||||
from collections import namedtuple
|
||||
import logging
|
||||
import re
|
||||
import signal
|
||||
import sys
|
||||
import traceback
|
||||
|
||||
import aiohttp
|
||||
import websockets
|
||||
|
||||
from .user import User, Profile
|
||||
from .invite import Invite
|
||||
from .object import Object
|
||||
@ -39,15 +50,6 @@ from . import utils
|
||||
from .backoff import ExponentialBackoff
|
||||
from .webhook import Webhook
|
||||
|
||||
import asyncio
|
||||
import aiohttp
|
||||
import websockets
|
||||
|
||||
import logging, traceback
|
||||
import sys, re
|
||||
import signal
|
||||
from collections import namedtuple
|
||||
|
||||
log = logging.getLogger(__name__)
|
||||
|
||||
AppInfo = namedtuple('AppInfo',
|
||||
|
Reference in New Issue
Block a user