James McCool
commited on
Commit
·
0d5bdc7
1
Parent(s):
178f6d2
Update data presentation in load_contest_file.py by replacing entry_list with df['BaseName']
Browse files- Modified the load_contest_file function to display df['BaseName'] instead of entry_list, enhancing the clarity of the data presented to users.
- Maintained existing functionality while improving the organization and visibility of contest data during processing.
global_func/load_contest_file.py
CHANGED
@@ -135,7 +135,7 @@ def load_contest_file(upload, helper_var, helper = None, sport = None):
|
|
135 |
|
136 |
print('Made it through check_lineups')
|
137 |
|
138 |
-
st.table(
|
139 |
st.table(cleaned_df)
|
140 |
st.table(ownership_df)
|
141 |
st.table(fpts_df)
|
|
|
135 |
|
136 |
print('Made it through check_lineups')
|
137 |
|
138 |
+
st.table(df['BaseName'])
|
139 |
st.table(cleaned_df)
|
140 |
st.table(ownership_df)
|
141 |
st.table(fpts_df)
|