Mahendra87 commited on
Commit
b059123
·
verified ·
1 Parent(s): 40e4e50

Update src/streamlit_app.py

Browse files
Files changed (1) hide show
  1. 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
- BASE_DIR = os.path.dirname(os.path.abspath(__file__)) # /app/src
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
  # -------------------------------