Anon
commited on
Commit
·
bdf7fdf
1
Parent(s):
f90485e
update path.
Browse files- src/streamlit_app.py +1 -1
src/streamlit_app.py
CHANGED
|
@@ -48,7 +48,7 @@ from pathlib import Path
|
|
| 48 |
|
| 49 |
# streamlit_app.py is under src/, and hf_gifs is a sibling of src/
|
| 50 |
SRC_DIR = Path(__file__).resolve().parent
|
| 51 |
-
GIF_DIR = SRC_DIR
|
| 52 |
|
| 53 |
if not GIF_DIR.exists():
|
| 54 |
st.error(f"Could not find hf_gifs folder at: {GIF_DIR}")
|
|
|
|
| 48 |
|
| 49 |
# streamlit_app.py is under src/, and hf_gifs is a sibling of src/
|
| 50 |
SRC_DIR = Path(__file__).resolve().parent
|
| 51 |
+
GIF_DIR = SRC_DIR / "hf_gifs"
|
| 52 |
|
| 53 |
if not GIF_DIR.exists():
|
| 54 |
st.error(f"Could not find hf_gifs folder at: {GIF_DIR}")
|