Update app.py
Browse files
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[
|
249 |
-
print (ea[
|
250 |
-
high_score.append(f"{ea[
|
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 |
|