Spaces:
Running
Running
James McCool
commited on
Commit
·
3bcc010
1
Parent(s):
439909e
Fix typo in MongoDB collection name from 'Player_Range_of_Outcomes' to 'Player_Range_Of_Outcomes'
Browse files
app.py
CHANGED
@@ -43,7 +43,7 @@ def init_DK_seed_frames(league):
|
|
43 |
@st.cache_data(ttl = 599)
|
44 |
def init_baselines():
|
45 |
|
46 |
-
collection = db['
|
47 |
cursor = collection.find()
|
48 |
|
49 |
raw_display = pd.DataFrame(list(cursor))
|
|
|
43 |
@st.cache_data(ttl = 599)
|
44 |
def init_baselines():
|
45 |
|
46 |
+
collection = db['Player_Range_Of_Outcomes']
|
47 |
cursor = collection.find()
|
48 |
|
49 |
raw_display = pd.DataFrame(list(cursor))
|