Add ruff and mypy to dev dependencies with configuration in pyproject.toml. Add a lint CI job that runs ruff check, ruff format --check, and mypy. Auto-fix import sorting and formatting across the codebase. Exclude alembic/versions from linting (auto-generated migrations). Ignore B008 (FastAPI Depends pattern) and RUF001 (unicode in user-facing strings). 21 ruff lint errors and 50 mypy errors remain for manual review. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
29 lines
820 B
Python
29 lines
820 B
Python
from __future__ import annotations
|
|
|
|
from typing import TYPE_CHECKING
|
|
|
|
from app.services.domains.arxiv.gateway import (
|
|
build_arxiv_query,
|
|
get_arxiv_gateway,
|
|
)
|
|
|
|
if TYPE_CHECKING:
|
|
from app.services.domains.publications.types import PublicationListItem, UnreadPublicationItem
|
|
|
|
|
|
def _build_arxiv_query(title: str, author_surname: str | None) -> str | None:
|
|
return build_arxiv_query(title, author_surname)
|
|
|
|
|
|
async def discover_arxiv_id_for_publication(
|
|
*,
|
|
item: PublicationListItem | UnreadPublicationItem,
|
|
request_email: str | None = None,
|
|
timeout_seconds: float | None = None,
|
|
) -> str | None:
|
|
gateway = get_arxiv_gateway()
|
|
return await gateway.discover_arxiv_id_for_publication(
|
|
item=item,
|
|
request_email=request_email,
|
|
timeout_seconds=timeout_seconds,
|
|
)
|