Restyled by isort

This commit is contained in:
Restyled.io
2021-05-21 03:40:50 +00:00
parent 5132c9e023
commit a62f17c8c9
5 changed files with 45 additions and 33 deletions

View File

@@ -1,13 +1,16 @@
from __future__ import annotations
from librespot.audio import NormalizationData, PlayableContentFeeder, HaltListener
from librespot.common import Utils
from librespot.core import Session
from librespot.proto import Metadata, StorageResolve
import logging
import random
import time
import typing
from librespot.audio import (HaltListener, NormalizationData,
PlayableContentFeeder)
from librespot.common import Utils
from librespot.core import Session
from librespot.proto import Metadata, StorageResolve
class CdnFeedHelper:
_LOGGER: logging = logging.getLogger(__name__)