mirror of
https://github.com/EDCD/EDMarketConnector.git
synced 2025-06-10 12:22:27 +03:00
Reordered imports
This commit is contained in:
parent
3155b929fa
commit
265faf3cdd
@ -2,31 +2,28 @@
|
|||||||
# Inara sync
|
# Inara sync
|
||||||
#
|
#
|
||||||
|
|
||||||
from collections import OrderedDict, defaultdict
|
|
||||||
import json
|
|
||||||
from typing import Any, AnyStr, Callable, Deque, Dict, List, Mapping, NamedTuple, Optional, OrderedDict as OrderedDictT, \
|
|
||||||
Sequence, TYPE_CHECKING, Tuple, Union
|
|
||||||
import dataclasses
|
import dataclasses
|
||||||
|
import json
|
||||||
import requests
|
import logging
|
||||||
import sys
|
import sys
|
||||||
import time
|
import time
|
||||||
|
import tkinter as tk
|
||||||
|
# For new impl
|
||||||
|
from collections import OrderedDict, defaultdict, deque
|
||||||
from operator import itemgetter
|
from operator import itemgetter
|
||||||
from queue import Queue
|
from queue import Queue
|
||||||
from threading import Lock, Thread
|
from threading import Lock, Thread
|
||||||
import logging
|
from typing import TYPE_CHECKING, Any, AnyStr, Callable, Deque, Dict, List, Mapping, NamedTuple, Optional
|
||||||
|
from typing import OrderedDict as OrderedDictT
|
||||||
|
from typing import Sequence, Union
|
||||||
|
|
||||||
import tkinter as tk
|
import requests
|
||||||
from ttkHyperlinkLabel import HyperlinkLabel
|
|
||||||
import myNotebook as nb
|
|
||||||
|
|
||||||
from config import appname, applongname, appversion, config
|
import myNotebook as nb # noqa: N813
|
||||||
import plug
|
import plug
|
||||||
import timeout_session
|
import timeout_session
|
||||||
|
from config import applongname, appname, appversion, config
|
||||||
# For new impl
|
from ttkHyperlinkLabel import HyperlinkLabel
|
||||||
from collections import deque
|
|
||||||
|
|
||||||
|
|
||||||
logger = logging.getLogger(appname)
|
logger = logging.getLogger(appname)
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user