Browse Source

persistence fixed

Lukas Goldschmidt 1 tháng trước cách đây
mục cha
commit
355f11f71f
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      src/exec_mcp/storage.py

+ 1 - 1
src/exec_mcp/storage.py

@@ -3,7 +3,7 @@ from __future__ import annotations
 import sqlite3
 from pathlib import Path
 
-DB_PATH = Path(__file__).resolve().parents[3] / "data" / "exec_mcp.sqlite3"
+DB_PATH = Path(__file__).resolve().parents[2] / "data" / "exec_mcp.sqlite3"
 
 
 def get_connection() -> sqlite3.Connection: