Skip to content

Commit

Permalink
added missing commas
Browse files Browse the repository at this point in the history
  • Loading branch information
dieser-niko authored Dec 3, 2024
1 parent 9bf8df2 commit d789bf3
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions spotipy/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -460,8 +460,8 @@ def artist_related_artists(self, artist_id):
"""
warnings.warn(
"You're using `artist_related_artists(...)`, "
"which is marked as deprecated by Spotify."
DeprecationWarning,
"which is marked as deprecated by Spotify.",
DeprecationWarning
)
trid = self._get_id("artist", artist_id)
return self._get("artists/" + trid + "/related-artists")
Expand Down Expand Up @@ -1594,7 +1594,7 @@ def featured_playlists(
"""
warnings.warn(
"You're using `featured_playlists(...)`, "
"which is marked as deprecated by Spotify."
"which is marked as deprecated by Spotify.",
DeprecationWarning,
)
return self._get(
Expand Down Expand Up @@ -1683,7 +1683,7 @@ def category_playlists(
"""
warnings.warn(
"You're using `category_playlists(...)`, "
"which is marked as deprecated by Spotify."
"which is marked as deprecated by Spotify.",
DeprecationWarning,
)
return self._get(
Expand Down Expand Up @@ -1725,7 +1725,7 @@ def recommendations(
"""
warnings.warn(
"You're using `recommendations(...)`, "
"which is marked as deprecated by Spotify."
"which is marked as deprecated by Spotify.",
DeprecationWarning,
)

Expand Down Expand Up @@ -1777,7 +1777,7 @@ def audio_analysis(self, track_id):
"""
warnings.warn(
"You're using `audio_analysis(...)`, "
"which is marked as deprecated by Spotify."
"which is marked as deprecated by Spotify.",
DeprecationWarning,
)
trid = self._get_id("track", track_id)
Expand All @@ -1790,7 +1790,7 @@ def audio_features(self, tracks=[]):
"""
warnings.warn(
"You're using `audio_features(...)`, "
"which is marked as deprecated by Spotify."
"which is marked as deprecated by Spotify.",
DeprecationWarning,
)

Expand Down

0 comments on commit d789bf3

Please sign in to comment.