Skip to content

Commit 9f34b74

Browse files
committed
Fix: Copilot review suggestion
1 parent 833b80e commit 9f34b74

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

project/backend/Database.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ def getConnection() -> sqlite3.Connection:
1010
con = sqlite3.connect(str(DB_PATH), check_same_thread=False)
1111
con.row_factory = sqlite3.Row
1212
con.execute("PRAGMA foreign_keys = ON")
13-
#con.execute("PRAGMA journal_mode = WAL")
13+
con.execute("PRAGMA journal_mode = WAL")
1414
return con
1515

1616

0 commit comments

Comments
 (0)