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 `