mirror of
https://github.com/spotipy-dev/spotipy.git
synced 2026-06-19 09:13:53 +00:00
add type
This commit is contained in:
parent
badadd5c20
commit
58e8527d03
@ -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,
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user