Omnibus commited on
Commit
79074c7
1 Parent(s): a1d3fee

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -245,9 +245,9 @@ def get_high_score():
245
  #lod.sort()
246
  for ea in lod:
247
  print (ea)
248
- print (ea[0]['game_name'])
249
- print (ea[0]['score'])
250
- high_score.append(f"{ea[0]['game_name']}\n{ea[0]['score']}")
251
  #high_score.sort()
252
  return high_score
253
 
 
245
  #lod.sort()
246
  for ea in lod:
247
  print (ea)
248
+ print (ea['game_name'])
249
+ print (ea['score'])
250
+ high_score.append(f"{ea['game_name']}\n{ea['score']}")
251
  #high_score.sort()
252
  return high_score
253