arpy8 commited on
Commit
868a0dd
·
1 Parent(s): 6b5aade

move song above artist in response dict

Browse files
Files changed (1) hide show
  1. 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