Wrong db location

This commit is contained in:
James Jennett-Wheeler 2025-06-23 11:35:05 +01:00
parent 2ae936ff67
commit 080ef78792

View File

@ -31,7 +31,7 @@ def notify(title, message):
def update_other_applications():
there_were_newly_decided_applications = False
with sqlite3.connect("../database.db") as _conn:
with sqlite3.connect("./database.db") as _conn:
_cursor = _conn.cursor()
with webdriver.Chrome(options=web_opts) as _browser: