From 9087f354559f53fdcdf9178793622ac76c2f2083 Mon Sep 17 00:00:00 2001 From: tehkillerbee Date: Mon, 8 Apr 2024 21:34:18 +0200 Subject: [PATCH] Formatting --- tidalapi/artist.py | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/tidalapi/artist.py b/tidalapi/artist.py index da2d881..17563c9 100644 --- a/tidalapi/artist.py +++ b/tidalapi/artist.py @@ -126,9 +126,11 @@ def get_albums(self, limit: Optional[int] = None, offset: int = 0) -> List["Albu return self._get_albums(params) def get_albums_ep_singles( - self, limit: Optional[int] = None, offset: int = 0 + self, limit: Optional[int] = None, offset: int = 0 ) -> List["Album"]: - print("This method is deprecated an will be removed in a future release. Use instead `get_ep_singles`") + print( + "This method is deprecated an will be removed in a future release. Use instead `get_ep_singles`" + ) return self.get_ep_singles(limit=limit, offset=offset) @@ -143,15 +145,15 @@ def get_ep_singles( return self._get_albums(params) def get_albums_other( - self, limit: Optional[int] = None, offset: int = 0 + self, limit: Optional[int] = None, offset: int = 0 ) -> List["Album"]: - print("This method is deprecated an will be removed in a future release. Use instead `get_other`") + print( + "This method is deprecated an will be removed in a future release. Use instead `get_other`" + ) return self.get_other(limit=limit, offset=offset) - def get_other( - self, limit: Optional[int] = None, offset: int = 0 - ) -> List["Album"]: + def get_other(self, limit: Optional[int] = None, offset: int = 0) -> List["Album"]: """Queries TIDAL for albums the artist has appeared on as a featured artist. :return: A list of :class:`Albums `