KeshavRa commited on
Commit
526e7e0
·
verified ·
1 Parent(s): 54715f1

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -0
app.py CHANGED
@@ -203,6 +203,9 @@ else:
203
  total_scores = pd.Series()
204
  for s in scores:
205
  total_scores += s
 
 
 
206
  total_scores = [s/4 for s in total_scores]
207
  print(total_scores, type(total_scores))
208
  shelters['total_score'] = total_scores
 
203
  total_scores = pd.Series()
204
  for s in scores:
205
  total_scores += s
206
+ print(total_scores, type(total_scores))
207
+ total_scores = total_scores.tolist()
208
+ print(total_scores, type(total_scores))
209
  total_scores = [s/4 for s in total_scores]
210
  print(total_scores, type(total_scores))
211
  shelters['total_score'] = total_scores