chore: apply static type checks on celery async task dispatches and imports (#24418)

This commit is contained in:
Bowen Liang 2025-08-24 23:07:22 +08:00 committed by GitHub
commit d8000251ff
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
48 changed files with 101 additions and 75 deletions

View file

@ -2,7 +2,7 @@ from datetime import datetime
from typing import Optional
import sqlalchemy as sa
from celery import states # type: ignore
from celery import states
from sqlalchemy import DateTime, String
from sqlalchemy.orm import Mapped, mapped_column