From f4c2b90a29a512287a49c16059eedee9b41ca19c Mon Sep 17 00:00:00 2001 From: Niko Date: Fri, 17 May 2024 12:41:57 +0200 Subject: [PATCH] Made sure that the line column is not over 99. --- spotipy/client.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/spotipy/client.py b/spotipy/client.py index 743c116..dc71d64 100644 --- a/spotipy/client.py +++ b/spotipy/client.py @@ -421,8 +421,9 @@ class Spotify(object): 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