Skip to content

Commit

Permalink
Revert incorrect default limit (Fixes #291)
Browse files Browse the repository at this point in the history
  • Loading branch information
tehkillerbee committed Oct 15, 2024
1 parent 02d39b6 commit 6fee1ac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tidalapi/user.py
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@ def public_playlists(
)

def playlist_and_favorite_playlists(
self, limit: Optional[int] = None, offset: int = 0
self, limit: int = 50, offset: int = 0
) -> List[Union["Playlist", "UserPlaylist"]]:
"""Get the playlists created by the user, and the playlists favorited by the
user. This function is limited to 50 by TIDAL, requiring pagination.
Expand Down

0 comments on commit 6fee1ac

Please sign in to comment.