Skip to content

Commit

Permalink
use formatted string
Browse files Browse the repository at this point in the history
Co-authored-by: sigma67 <16363825+sigma67@users.noreply.github.com>
  • Loading branch information
webns and sigma67 committed May 29, 2023
1 parent 060544f commit 4f2fd95
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion spotify_to_ytmusic/controllers.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ def liked(args):
if len(tracks) == 0:
exit("Could not find any liked tracks for the user.")

print(str(len(tracks)) + " tracks found. Creating playlist...")
print(f"{len(tracks)} tracks found. Creating playlist...")
try:
videos_ids = ytmusic.search_songs(tracks)
playlist_id = ytmusic.create_playlist(
Expand Down

0 comments on commit 4f2fd95

Please sign in to comment.