[core] Address SQLAlchemy deprecations
This commit is contained in:
@ -1,14 +1,18 @@
|
||||
import logging, coloredlogs
|
||||
from Crypto.Cipher import AES
|
||||
from typing import Dict, Tuple, Callable, Union, Optional
|
||||
import asyncio
|
||||
import logging
|
||||
from logging.handlers import TimedRotatingFileHandler
|
||||
from typing import Callable, Dict, Optional, Tuple, Union
|
||||
|
||||
import coloredlogs
|
||||
from Crypto.Cipher import AES
|
||||
|
||||
from core.config import CoreConfig
|
||||
from core.utils import create_sega_auth_key
|
||||
from core.data import Data
|
||||
from core.utils import create_sega_auth_key
|
||||
|
||||
from .adb_handlers import *
|
||||
|
||||
|
||||
class AimedbServlette():
|
||||
request_list: Dict[int, Tuple[Callable[[bytes, int], Union[ADBBaseResponse, bytes]], int, str]] = {}
|
||||
def __init__(self, core_cfg: CoreConfig) -> None:
|
||||
|
Reference in New Issue
Block a user