Spaces:
Build error
Build error
CB commited on
Update streamlit_app.py
Browse files- streamlit_app.py +6 -6
streamlit_app.py
CHANGED
|
@@ -1,9 +1,3 @@
|
|
| 1 |
-
import streamlit as st
|
| 2 |
-
from diagnostics import env_check
|
| 3 |
-
|
| 4 |
-
st.header("Environment")
|
| 5 |
-
st.code(env_check())
|
| 6 |
-
|
| 7 |
# streamlit_app.py
|
| 8 |
import os
|
| 9 |
import time
|
|
@@ -562,3 +556,9 @@ if st.session_state.get("analysis_out"):
|
|
| 562 |
if st.session_state.get("last_error"):
|
| 563 |
with st.expander("Last Error", expanded=False):
|
| 564 |
st.write(st.session_state.get("last_error"))
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
# streamlit_app.py
|
| 2 |
import os
|
| 3 |
import time
|
|
|
|
| 556 |
if st.session_state.get("last_error"):
|
| 557 |
with st.expander("Last Error", expanded=False):
|
| 558 |
st.write(st.session_state.get("last_error"))
|
| 559 |
+
|
| 560 |
+
import streamlit as st
|
| 561 |
+
from diagnostics import env_check
|
| 562 |
+
|
| 563 |
+
st.header("Environment")
|
| 564 |
+
st.code(env_check())
|