Multichem commited on
Commit
9c30b2f
·
verified ·
1 Parent(s): eb59e4b

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -2
app.py CHANGED
@@ -65,8 +65,9 @@ def init_baselines():
65
  def init_DK_seed_frame():
66
  collection = db["DK_MLB_seed_frame"]
67
  cursor = collection.find()
68
-
69
- DK_seed = np.array(list(cursor))
 
70
 
71
  return DK_seed
72
 
 
65
  def init_DK_seed_frame():
66
  collection = db["DK_MLB_seed_frame"]
67
  cursor = collection.find()
68
+
69
+ raw_display = pd.DataFrame(list(cursor))
70
+ DK_seed = pd.to_numpy(raw_display)
71
 
72
  return DK_seed
73