Spaces:
Running
Running
James McCool
commited on
Commit
·
8108ccb
1
Parent(s):
b3b3746
Refactor app layout by removing unused containers and consolidating settings into a single container. This change simplifies the UI and improves the organization of the simulation interface.
Browse files
app.py
CHANGED
@@ -463,11 +463,9 @@ with tab6:
|
|
463 |
game_model, raw_baselines, player_stats, prop_frame, pick_frame, market_props, timestamp = init_baselines()
|
464 |
t_stamp = f"Last Update: " + str(timestamp) + f" CST"
|
465 |
|
|
|
466 |
df_hold_container = st.empty()
|
467 |
-
info_hold_container = st.empty()
|
468 |
-
plot_hold_container = st.empty()
|
469 |
export_container = st.empty()
|
470 |
-
settings_container = st.empty()
|
471 |
|
472 |
with settings_container.container():
|
473 |
col1, col2, col3, col4 = st.columns([3, 3, 3, 3])
|
|
|
463 |
game_model, raw_baselines, player_stats, prop_frame, pick_frame, market_props, timestamp = init_baselines()
|
464 |
t_stamp = f"Last Update: " + str(timestamp) + f" CST"
|
465 |
|
466 |
+
settings_container = st.empty()
|
467 |
df_hold_container = st.empty()
|
|
|
|
|
468 |
export_container = st.empty()
|
|
|
469 |
|
470 |
with settings_container.container():
|
471 |
col1, col2, col3, col4 = st.columns([3, 3, 3, 3])
|