This commit is contained in:
bvandercar-vt 2025-12-03 11:35:53 -07:00
parent badadd5c20
commit 58e8527d03

View File

@ -405,9 +405,9 @@ class Spotify:
def artist_albums( def artist_albums(
self, self,
artist_id: str, artist_id: str,
album_type=None, album_type: Optional[str] = None,
include_groups=None, include_groups: Optional[str] = None,
country=None, country: Optional[str] = None,
limit: int = 20, limit: int = 20,
offset: int = 0, offset: int = 0,
): ):
@ -808,7 +808,7 @@ class Spotify:
self, self,
user: str, user: str,
playlist_id: Optional[str] = None, playlist_id: Optional[str] = None,
fields=None, fields: Optional[str] = None,
market: Optional[str] = None, market: Optional[str] = None,
): ):
""" Gets a single playlist of a user """ Gets a single playlist of a user
@ -835,7 +835,7 @@ class Spotify:
self, self,
user: Optional[str] = None, user: Optional[str] = None,
playlist_id: Optional[str] = None, playlist_id: Optional[str] = None,
fields=None, fields: Optional[str] = None,
limit: int = 100, limit: int = 100,
offset: int = 0, offset: int = 0,
market: Optional[str] = None, market: Optional[str] = None,