Restyled by reorder-python-imports

This commit is contained in:
Restyled.io
2021-04-09 23:16:25 +00:00
parent fa7d74d9df
commit ee0dacc040
7 changed files with 16 additions and 11 deletions

View File

@@ -3,9 +3,7 @@
# This file only contains a selection of the most common options. For a full # This file only contains a selection of the most common options. For a full
# list see the documentation: # list see the documentation:
# https://www.sphinx-doc.org/en/master/usage/configuration.html # https://www.sphinx-doc.org/en/master/usage/configuration.html
# -- Path setup -------------------------------------------------------------- # -- Path setup --------------------------------------------------------------
# If extensions (or modules to document with autodoc) are in another directory, # If extensions (or modules to document with autodoc) are in another directory,
# add these directories to sys.path here. If the directory is relative to the # add these directories to sys.path here. If the directory is relative to the
# documentation root, use os.path.abspath to make it absolute, like shown here. # documentation root, use os.path.abspath to make it absolute, like shown here.
@@ -13,7 +11,6 @@
# import os # import os
# import sys # import sys
# sys.path.insert(0, os.path.abspath('.')) # sys.path.insert(0, os.path.abspath('.'))
# -- Project information ----------------------------------------------------- # -- Project information -----------------------------------------------------
project = "librespot-python" project = "librespot-python"

View File

@@ -2,7 +2,8 @@ from __future__ import annotations
import re import re
from librespot.common import Base62, Utils from librespot.common import Base62
from librespot.common import Utils
from librespot.metadata import SpotifyId from librespot.metadata import SpotifyId

View File

@@ -2,7 +2,8 @@ from __future__ import annotations
import re import re
from librespot.common import Base62, Utils from librespot.common import Base62
from librespot.common import Utils
from librespot.metadata import SpotifyId from librespot.metadata import SpotifyId

View File

@@ -2,7 +2,8 @@ from __future__ import annotations
import re import re
from librespot.common import Base62, Utils from librespot.common import Base62
from librespot.common import Utils
from librespot.metadata import SpotifyId from librespot.metadata import SpotifyId

View File

@@ -5,7 +5,8 @@ import sched
import time import time
from librespot.core.Session import Session from librespot.core.Session import Session
from librespot.player import PlayerConfiguration, StateWrapper from librespot.player import PlayerConfiguration
from librespot.player import StateWrapper
from librespot.player.metrics import PlaybackMetrics from librespot.player.metrics import PlaybackMetrics
from librespot.player.mixing import AudioSink from librespot.player.mixing import AudioSink
from librespot.player.playback.PlayerSession import PlayerSession from librespot.player.playback.PlayerSession import PlayerSession

View File

@@ -2,11 +2,14 @@ from __future__ import annotations
from librespot.core import Session from librespot.core import Session
from librespot.dealer import DealerClient from librespot.dealer import DealerClient
from librespot.player import Player, PlayerConfiguration from librespot.player import Player
from librespot.player import PlayerConfiguration
from librespot.player.state import DeviceStateHandler from librespot.player.state import DeviceStateHandler
from librespot.proto import Connect from librespot.proto import Connect
from librespot.proto.Player import (ContextPlayerOptions, PlayerState, from librespot.proto.Player import ContextPlayerOptions
Restrictions, Suppressions) from librespot.proto.Player import PlayerState
from librespot.proto.Player import Restrictions
from librespot.proto.Player import Suppressions
class StateWrapper(DeviceStateHandler.Listener, DealerClient.MessageListener): class StateWrapper(DeviceStateHandler.Listener, DealerClient.MessageListener):

View File

@@ -11,7 +11,8 @@ import urllib.parse
from librespot.common import Utils from librespot.common import Utils
from librespot.core import Session from librespot.core import Session
from librespot.player import PlayerConfiguration from librespot.player import PlayerConfiguration
from librespot.proto import Connect, Player from librespot.proto import Connect
from librespot.proto import Player
class DeviceStateHandler: class DeviceStateHandler: