Skip to content

Commit

Permalink
Made sure that the line column is not over 99.
Browse files Browse the repository at this point in the history
  • Loading branch information
dieser-niko authored May 17, 2024
1 parent 0a8e7f6 commit f4c2b90
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions spotipy/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -421,8 +421,9 @@ def artist_albums(

if album_type:
warnings.warn(
"You're using `artist_albums(..., album_type='...')` which will be removed in future versions. "
"Please adjust your code accordingly by using `artist_albums(..., include_groups='...')` instead.",
"You're using `artist_albums(..., album_type='...')` which will be removed in "
"future versions. Please adjust your code accordingly by using "
"`artist_albums(..., include_groups='...')` instead.",
DeprecationWarning,
)
include_groups = album_type if include_groups is None else include_groups
Expand Down

0 comments on commit f4c2b90

Please sign in to comment.