Omnibus commited on
Commit
0a8f1b2
1 Parent(s): aee6044

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -2
app.py CHANGED
@@ -243,7 +243,6 @@ def get_high_score():
243
  high_score=[0,0,0]
244
  sort_score=[0,0,0]
245
  print(sort_score)
246
- high_score.append("<h3><u>High Score</u></h3><br>")
247
  for ea in lod:
248
  try:
249
  print (ea)
@@ -279,7 +278,7 @@ def get_high_score():
279
  except Exception as e:
280
  print(e)
281
  pass
282
- return high_score
283
 
284
  except Exception as e:
285
  return e
 
243
  high_score=[0,0,0]
244
  sort_score=[0,0,0]
245
  print(sort_score)
 
246
  for ea in lod:
247
  try:
248
  print (ea)
 
278
  except Exception as e:
279
  print(e)
280
  pass
281
+ return f"<h3><u>High Score</u></h3><br>{high_score[0]}<br>{high_score[1]}<br>{high_score[2]}<br>"
282
 
283
  except Exception as e:
284
  return e