Spaces:
Sleeping
Sleeping
SamuelHarner
commited on
Commit
•
909b6fe
1
Parent(s):
e9b84ca
Update list_songs.py
Browse files- list_songs.py +1 -1
list_songs.py
CHANGED
@@ -9,6 +9,6 @@ class ListSongs:
|
|
9 |
songs = json.load(f)
|
10 |
|
11 |
for song in songs:
|
12 |
-
list_output += "- " + song['name']
|
13 |
|
14 |
return list_output.strip()
|
|
|
9 |
songs = json.load(f)
|
10 |
|
11 |
for song in songs:
|
12 |
+
list_output += "- " + song['name'] + "\n"
|
13 |
|
14 |
return list_output.strip()
|