fix(types): T1 — remove 15 stale type: ignore comments confirmed unused by mypy

This commit is contained in:
2026-05-01 01:26:24 -04:00
parent 8033137be6
commit ed6263a53d
10 changed files with 13 additions and 13 deletions

View File

@@ -45,7 +45,7 @@ class SqliteVecUnavailable(RuntimeError):
def _load_sqlite_vec(conn: sqlite3.Connection) -> None:
try:
import sqlite_vec # type: ignore[import-untyped]
import sqlite_vec
except ImportError as e:
raise SqliteVecUnavailable("sqlite_vec package not installed") from e
try: