Skip to content

Commit

Permalink
Fix black formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
Silverarmor committed Dec 9, 2024
1 parent 9b7d1a4 commit 8013d84
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion spotdl/utils/m3u.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,9 @@ def create_m3u_content(
text = "#EXTM3U\n"

for song in song_list:
metadata = create_file_name(song, "#EXTINF:{duration},{album-artist} - {title}", "")
metadata = create_file_name(
song, "#EXTINF:{duration},{album-artist} - {title}", ""
)
text += str(metadata) + "\n"

if not detect_formats:
Expand Down

0 comments on commit 8013d84

Please sign in to comment.