Edwin Salguero
commited on
Commit
·
97e9fd7
1
Parent(s):
a59c6ba
fix: correct circular import in streamlit_app.py for deployment
Browse files- streamlit_app.py +1 -1
streamlit_app.py
CHANGED
@@ -11,7 +11,7 @@ import os
|
|
11 |
sys.path.append(os.path.join(os.path.dirname(__file__), 'ui'))
|
12 |
|
13 |
# Import and run the main Streamlit app
|
14 |
-
from streamlit_app import main
|
15 |
|
16 |
if __name__ == "__main__":
|
17 |
main()
|
|
|
11 |
sys.path.append(os.path.join(os.path.dirname(__file__), 'ui'))
|
12 |
|
13 |
# Import and run the main Streamlit app
|
14 |
+
from ui.streamlit_app import main
|
15 |
|
16 |
if __name__ == "__main__":
|
17 |
main()
|