Made sure that the line column is not over 99.

This commit is contained in:
Niko 2024-05-17 12:41:57 +02:00 committed by GitHub
parent 0a8e7f635e
commit f4c2b90a29
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -421,8 +421,9 @@ class Spotify(object):
if album_type: if album_type:
warnings.warn( warnings.warn(
"You're using `artist_albums(..., album_type='...')` which will be removed in future versions. " "You're using `artist_albums(..., album_type='...')` which will be removed in "
"Please adjust your code accordingly by using `artist_albums(..., include_groups='...')` instead.", "future versions. Please adjust your code accordingly by using "
"`artist_albums(..., include_groups='...')` instead.",
DeprecationWarning, DeprecationWarning,
) )
include_groups = album_type if include_groups is None else include_groups include_groups = album_type if include_groups is None else include_groups