Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -57,7 +57,7 @@ fd_columns = ['QB', 'RB1', 'RB2', 'WR1', 'WR2', 'WR3', 'TE', 'FLEX', 'DST', 'sal
|
|
57 |
@st.cache_data(ttl = 599)
|
58 |
def init_DK_seed_frames():
|
59 |
|
60 |
-
collection = db["
|
61 |
cursor = collection.find()
|
62 |
|
63 |
raw_display = pd.DataFrame(list(cursor))
|
@@ -69,7 +69,7 @@ def init_DK_seed_frames():
|
|
69 |
@st.cache_data(ttl = 599)
|
70 |
def init_FD_seed_frames():
|
71 |
|
72 |
-
collection = db["
|
73 |
cursor = collection.find()
|
74 |
|
75 |
raw_display = pd.DataFrame(list(cursor))
|
|
|
57 |
@st.cache_data(ttl = 599)
|
58 |
def init_DK_seed_frames():
|
59 |
|
60 |
+
collection = db["DK_NFL_seed_frame"]
|
61 |
cursor = collection.find()
|
62 |
|
63 |
raw_display = pd.DataFrame(list(cursor))
|
|
|
69 |
@st.cache_data(ttl = 599)
|
70 |
def init_FD_seed_frames():
|
71 |
|
72 |
+
collection = db["FD_NFL_seed_frame"]
|
73 |
cursor = collection.find()
|
74 |
|
75 |
raw_display = pd.DataFrame(list(cursor))
|