fix: Add missing Dict, Any import to sqlite_handler.py

This commit is contained in:
Paul Picazo
2026-01-03 14:43:52 -08:00
parent 942d4dfe28
commit 9288e070aa
+1 -1
View File
@@ -5,7 +5,7 @@ import time
import secrets
import base64
from pathlib import Path
from typing import Optional, List
from typing import Optional, List, Dict, Any
logger = logging.getLogger("SQLiteHandler")