used isort + black
This commit is contained in:
@@ -1,2 +1,2 @@
|
||||
from .recognise import recognise_music_service, RecognisedService
|
||||
from .id_getter import get_id
|
||||
from .recognise import RecognisedService, recognise_music_service
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
from .recognise import RecognisedService
|
||||
|
||||
import aiohttp
|
||||
|
||||
from .recognise import RecognisedService
|
||||
|
||||
|
||||
async def get_url_after_redirect(url: str) -> str:
|
||||
async with aiohttp.ClientSession() as session:
|
||||
|
||||
@@ -1,15 +1,13 @@
|
||||
from urllib.parse import urlparse, ParseResult
|
||||
from dataclasses import dataclass
|
||||
|
||||
from typing import Callable, Awaitable, Literal
|
||||
from typing import Awaitable, Callable, Literal
|
||||
from urllib.parse import ParseResult, urlparse
|
||||
|
||||
from bot.modules.database import db
|
||||
from bot.modules.database.db import DBDict
|
||||
|
||||
from bot.modules.youtube import youtube
|
||||
from bot.modules.spotify import spotify
|
||||
from bot.modules.deezer import deezer
|
||||
from bot.modules.soundcloud import soundcloud
|
||||
from bot.modules.spotify import spotify
|
||||
from bot.modules.youtube import youtube
|
||||
|
||||
|
||||
@dataclass
|
||||
|
||||
Reference in New Issue
Block a user