Update app.py
Browse files
app.py
CHANGED
|
@@ -63,7 +63,7 @@ def assign_dates_to_matches(matches):
|
|
| 63 |
return [(match[0], match[1], extended_dates[i]) for i, match in enumerate(matches)]
|
| 64 |
|
| 65 |
|
| 66 |
-
# 6. generate_mock_historical_data
|
| 67 |
def generate_mock_historical_data(num_teams, num_conferences, num_inter_games, start_date, end_date):
|
| 68 |
full_schedule = []
|
| 69 |
for i in range(num_conferences):
|
|
@@ -186,8 +186,6 @@ if st.session_state.historical_data is None:
|
|
| 186 |
st.session_state.historical_data['Date'] = pd.to_datetime(st.session_state.historical_data['Date'])
|
| 187 |
|
| 188 |
|
| 189 |
-
|
| 190 |
-
|
| 191 |
|
| 192 |
# Configuration UI
|
| 193 |
st.header("Configuration")
|
|
|
|
| 63 |
return [(match[0], match[1], extended_dates[i]) for i, match in enumerate(matches)]
|
| 64 |
|
| 65 |
|
| 66 |
+
# 6. generate_mock_historical_data
|
| 67 |
def generate_mock_historical_data(num_teams, num_conferences, num_inter_games, start_date, end_date):
|
| 68 |
full_schedule = []
|
| 69 |
for i in range(num_conferences):
|
|
|
|
| 186 |
st.session_state.historical_data['Date'] = pd.to_datetime(st.session_state.historical_data['Date'])
|
| 187 |
|
| 188 |
|
|
|
|
|
|
|
| 189 |
|
| 190 |
# Configuration UI
|
| 191 |
st.header("Configuration")
|