fix: resolve all mypy type errors across service modules

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Justin Visser 2026-02-27 15:49:27 +01:00
parent f11947aad2
commit 74249fa24c
10 changed files with 39 additions and 31 deletions

View file

@ -1,5 +1,7 @@
from __future__ import annotations
from typing import Any
from sqlalchemy import and_, select
from app.db.models import IngestionQueueItem, ScholarProfile
@ -38,7 +40,7 @@ def queue_item_select(*, user_id: int):
)
def queue_list_item_from_row(row: tuple) -> QueueListItem:
def queue_list_item_from_row(row: Any) -> QueueListItem:
(
item_id,
scholar_profile_id,