Spaces:
Running
Running
James McCool
commited on
Commit
·
66550f1
1
Parent(s):
0975a3e
Fixed capitalization of Secondary
Browse files
app.py
CHANGED
@@ -69,7 +69,7 @@ def init_DK_seed_frames():
|
|
69 |
@st.cache_data(ttl = 600)
|
70 |
def init_DK_secondary_seed_frames():
|
71 |
|
72 |
-
collection = db["
|
73 |
cursor = collection.find()
|
74 |
|
75 |
raw_display = pd.DataFrame(list(cursor))
|
@@ -93,7 +93,7 @@ def init_FD_seed_frames():
|
|
93 |
@st.cache_data(ttl = 599)
|
94 |
def init_FD_secondary_seed_frames():
|
95 |
|
96 |
-
collection = db["
|
97 |
cursor = collection.find()
|
98 |
|
99 |
raw_display = pd.DataFrame(list(cursor))
|
|
|
69 |
@st.cache_data(ttl = 600)
|
70 |
def init_DK_secondary_seed_frames():
|
71 |
|
72 |
+
collection = db["DK_NBA_Secondary_seed_frame"]
|
73 |
cursor = collection.find()
|
74 |
|
75 |
raw_display = pd.DataFrame(list(cursor))
|
|
|
93 |
@st.cache_data(ttl = 599)
|
94 |
def init_FD_secondary_seed_frames():
|
95 |
|
96 |
+
collection = db["FD_NBA_Secondary_seed_frame"]
|
97 |
cursor = collection.find()
|
98 |
|
99 |
raw_display = pd.DataFrame(list(cursor))
|