mirror of
https://github.com/miaowware/qrm2.git
synced 2024-11-22 15:58:40 -05:00
Reordered imports
- stdlib - 3rd-party (pip) - discord - local (common, info, utils, & resources) - data Element of #142 New year lint removal
This commit is contained in:
parent
e37fdf40fb
commit
6803b058d5
@ -16,11 +16,11 @@ the GNU General Public License, version 2.
|
||||
# KC4USA: reserved, no call history, *but* has application history
|
||||
|
||||
|
||||
import discord.ext.commands as commands
|
||||
|
||||
import aiohttp
|
||||
from bs4 import BeautifulSoup
|
||||
|
||||
import discord.ext.commands as commands
|
||||
|
||||
import common as cmn
|
||||
|
||||
|
||||
|
@ -10,9 +10,10 @@ the GNU General Public License, version 2.
|
||||
|
||||
import threading
|
||||
|
||||
from discord.ext import commands, tasks
|
||||
from ctyparser import BigCty
|
||||
|
||||
from discord.ext import commands, tasks
|
||||
|
||||
import common as cmn
|
||||
|
||||
|
||||
|
@ -11,12 +11,13 @@ the GNU General Public License, version 2.
|
||||
from collections import OrderedDict
|
||||
from io import BytesIO
|
||||
|
||||
from discord.ext import commands, tasks
|
||||
|
||||
import aiohttp
|
||||
from lxml import etree
|
||||
|
||||
from discord.ext import commands, tasks
|
||||
|
||||
import common as cmn
|
||||
|
||||
import data.keys as keys
|
||||
|
||||
|
||||
|
14
main.py
14
main.py
@ -9,11 +9,11 @@ the GNU General Public License, version 2.
|
||||
"""
|
||||
|
||||
|
||||
import asyncio
|
||||
import random
|
||||
import sys
|
||||
import traceback
|
||||
import asyncio
|
||||
from datetime import time, datetime
|
||||
import random
|
||||
from datetime import datetime, time
|
||||
from types import SimpleNamespace
|
||||
|
||||
import pytz
|
||||
@ -21,12 +21,12 @@ import pytz
|
||||
import discord
|
||||
from discord.ext import commands, tasks
|
||||
|
||||
import utils.connector as conn
|
||||
import common as cmn
|
||||
|
||||
import info
|
||||
import data.options as opt
|
||||
import common as cmn
|
||||
import utils.connector as conn
|
||||
|
||||
import data.keys as keys
|
||||
import data.options as opt
|
||||
|
||||
|
||||
# --- Settings ---
|
||||
|
Loading…
Reference in New Issue
Block a user