Spaces:
Running
Running
move song above artist in response dict
Browse files- app/main.py +1 -1
app/main.py
CHANGED
@@ -33,8 +33,8 @@ def get_data():
|
|
33 |
|
34 |
return {
|
35 |
"header": header_text,
|
36 |
-
"artist": artist,
|
37 |
"song": song,
|
|
|
38 |
"time": curr_time
|
39 |
}
|
40 |
|
|
|
33 |
|
34 |
return {
|
35 |
"header": header_text,
|
|
|
36 |
"song": song,
|
37 |
+
"artist": artist,
|
38 |
"time": curr_time
|
39 |
}
|
40 |
|