Update src/streamlit_app.py
Browse files- src/streamlit_app.py +1 -2
src/streamlit_app.py
CHANGED
|
@@ -3,8 +3,7 @@ import sqlite3
|
|
| 3 |
import re
|
| 4 |
import os
|
| 5 |
|
| 6 |
-
|
| 7 |
-
DB_PATH = os.path.join(BASE_DIR, "..", "customer_orders.db")
|
| 8 |
|
| 9 |
|
| 10 |
# -------------------------------
|
|
|
|
| 3 |
import re
|
| 4 |
import os
|
| 5 |
|
| 6 |
+
DB_PATH = os.path.join(os.path.dirname(__file__), "customer_orders.db")
|
|
|
|
| 7 |
|
| 8 |
|
| 9 |
# -------------------------------
|