| from __future__ import annotations | |
| import sys | |
| from pathlib import Path | |
| APP_DIR = Path(__file__).resolve().parent / "app" | |
| sys.path.insert(0, str(APP_DIR)) | |
| import streamlitapp # noqa: F401 # Streamlit runs the module top-level code. | |
| from __future__ import annotations | |
| import sys | |
| from pathlib import Path | |
| APP_DIR = Path(__file__).resolve().parent / "app" | |
| sys.path.insert(0, str(APP_DIR)) | |
| import streamlitapp # noqa: F401 # Streamlit runs the module top-level code. | |