Skip to content

Commit

Permalink
'Refactored by Sourcery'
Browse files Browse the repository at this point in the history
  • Loading branch information
Sourcery AI committed Aug 2, 2021
1 parent 9a0135f commit c17fb51
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion helpers/spotify.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ def __get_lyrics(self):
def my_song_title(self):
self.__get_song_artist()
if self.song_name and self.artist:
artist = ", ".join([a for a in self.artist])
artist = ", ".join(self.artist)
self.title = f"{self.song_name} by {artist}"
return self.title

Expand Down

0 comments on commit c17fb51

Please sign in to comment.