Omnibus commited on
Commit
b1e109f
1 Parent(s): 7f21e85

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -225,7 +225,7 @@ def predict(text, url_params):
225
  if load_game != None:
226
  try:
227
  r = requests.get(f'{save_data}games/{load_game}.omnigame')
228
- lod = json.loads(r.text)
229
  game_html=game_fn(lod['background_url'],lod['star_url'],lod['enemy_url'])
230
  #out_lod.append(lod)
231
  print (lod)
 
225
  if load_game != None:
226
  try:
227
  r = requests.get(f'{save_data}games/{load_game}.omnigame')
228
+ lod = json.dumps(r.text)
229
  game_html=game_fn(lod['background_url'],lod['star_url'],lod['enemy_url'])
230
  #out_lod.append(lod)
231
  print (lod)