Skip to content

Commit

Permalink
Formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
tehkillerbee committed Nov 9, 2024
1 parent 2c10200 commit 74ab28e
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions mopidy_tidal/backend.py
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
from __future__ import unicode_literals

import logging
import time
from concurrent.futures import Future
from pathlib import Path
from typing import Optional, Union

import time
from mopidy import backend
from pykka import ThreadingActor
from tidalapi import Config, Session
from tidalapi import __version__ as tidalapi_ver

from mopidy_tidal import Extension
from mopidy_tidal import __version__ as mopidy_tidal_ver
from mopidy_tidal import context, library, playback, playlists
from mopidy_tidal.web_auth_server import WebAuthServer
from tidalapi import Config, Session
from tidalapi import __version__ as tidalapi_ver

logger = logging.getLogger(__name__)

Expand Down
2 changes: 1 addition & 1 deletion tests/test_library.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
import pytest
from mopidy.models import Album, Artist, Image, Ref, SearchResult, Track
from requests import HTTPError
from tidalapi.playlist import Playlist

from mopidy_tidal.library import HTTPError, ObjectNotFound, TidalLibraryProvider
from tidalapi.playlist import Playlist


@pytest.fixture
Expand Down
2 changes: 1 addition & 1 deletion tests/test_login_hack.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@

import pytest
from mopidy.models import Album, Artist, Image, Playlist, Ref, SearchResult, Track
from tidalapi.session import LinkLogin

from mopidy_tidal.library import TidalLibraryProvider
from mopidy_tidal.playback import TidalPlaybackProvider
from mopidy_tidal.playlists import TidalPlaylistsProvider
from tidalapi.session import LinkLogin


@pytest.fixture
Expand Down

0 comments on commit 74ab28e

Please sign in to comment.