diff options
Diffstat (limited to '')
-rw-r--r-- | gui/streamlit_app.py | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/gui/streamlit_app.py b/gui/streamlit_app.py index ff1cb6d4..44507e18 100644 --- a/gui/streamlit_app.py +++ b/gui/streamlit_app.py @@ -1,3 +1,8 @@ +import os +import sys + +sys.path.append(os.path.join(os.path.dirname(__file__), os.path.pardir)) + import streamlit as st import phind @@ -45,4 +50,4 @@ hide_streamlit_style = """ footer {visibility: hidden;} </style> """ -st.markdown(hide_streamlit_style, unsafe_allow_html=True)
\ No newline at end of file +st.markdown(hide_streamlit_style, unsafe_allow_html=True) |