Skip to content

Commit df05d60

Browse files
committed
chore: lint
1 parent 54ad6ed commit df05d60

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

tidalapi/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
from .album import Album # noqa: F401
22
from .artist import Artist, Role # noqa: F401
33
from .genre import Genre # noqa: F401
4-
from .media import Track, Video, Quality, VideoQuality # noqa: F401
4+
from .media import Quality, Track, Video, VideoQuality # noqa: F401
55
from .mix import Mix # noqa: F401
66
from .page import Page # noqa: F401
77
from .playlist import Playlist, UserPlaylist # noqa: F401

tidalapi/session.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -606,8 +606,8 @@ def get_user(
606606
self, user_id=None
607607
) -> Union[tidalapi.FetchedUser, tidalapi.LoggedInUser, tidalapi.PlaylistCreator]:
608608
"""Function to create a User object with access to the session instance in a
609-
smoother way. Calls :class:`user.User(session=session, user_id=user_id)
610-
<.User>` internally.
609+
smoother way. Calls :class:`user.User(session=session, user_id=user_id) <.User>`
610+
internally.
611611
612612
:param user_id: (Optional) The TIDAL id of the User. You may want access to the methods without an id.
613613
:return: Returns a :class:`.User` object that has access to the session instance used.

0 commit comments

Comments
 (0)