Rimjhim Mittal commited on
Commit ·
4f65f95
1
Parent(s): 158463e
minor update to tab heading
Browse files
app.py
CHANGED
|
@@ -131,7 +131,7 @@ def show_json_output(mdf_model):
|
|
| 131 |
|
| 132 |
# st.cache_data()
|
| 133 |
def view_tabs(mdf_model, param_inputs): # view
|
| 134 |
-
tab1, tab2, tab3 = st.tabs(["Simulation Results", "MDF Graph", "Json
|
| 135 |
with tab1:
|
| 136 |
if 'simulation_results' not in st.session_state:
|
| 137 |
st.session_state.simulation_results = None
|
|
@@ -378,7 +378,6 @@ def main():
|
|
| 378 |
mdf_model = upload_file_and_load_to_model() # controller
|
| 379 |
|
| 380 |
if mdf_model:
|
| 381 |
-
# reset_simulation_state()
|
| 382 |
|
| 383 |
mod_graph = mdf_model.graphs[0]
|
| 384 |
nodes = mod_graph.nodes
|
|
|
|
| 131 |
|
| 132 |
# st.cache_data()
|
| 133 |
def view_tabs(mdf_model, param_inputs): # view
|
| 134 |
+
tab1, tab2, tab3 = st.tabs(["Simulation Results", "MDF Graph", "Json Model"])
|
| 135 |
with tab1:
|
| 136 |
if 'simulation_results' not in st.session_state:
|
| 137 |
st.session_state.simulation_results = None
|
|
|
|
| 378 |
mdf_model = upload_file_and_load_to_model() # controller
|
| 379 |
|
| 380 |
if mdf_model:
|
|
|
|
| 381 |
|
| 382 |
mod_graph = mdf_model.graphs[0]
|
| 383 |
nodes = mod_graph.nodes
|