chore: remove stale mypy suppressions and align dataset service tests (#34130)

This commit is contained in:
99
2026-03-26 20:34:44 +08:00
committed by GitHub
parent 69c2b422de
commit fcfc96ca05
11 changed files with 195 additions and 128 deletions

View File

@@ -220,7 +220,7 @@ class EmailDeliveryTestHandler:
stmt = stmt.where(Account.id.in_(unique_ids))
with self._session_factory() as session:
rows = session.execute(stmt).all()
rows = session.execute(stmt).tuples().all()
return dict(rows)
@staticmethod