backend: ruff lint fixes

- main.py: AsyncIterator from collections.abc (typing.AsyncIterator deprecated, UP035)
- geometry.py: TEAP first in import (isort: ALL_CAPS before MixedCase, I001)
- pyproject.toml: ignore RUF001/002/003 — Russian-language project legitimately
  uses Cyrillic lookalikes in comments/docstrings (МСК-66 etc).

Verified: ruff check . — All checks passed!

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
lekss361 2026-04-26 10:53:50 +03:00
parent e22aeb9b5a
commit d0909e6200
3 changed files with 5 additions and 2 deletions

View file

@ -1,5 +1,5 @@
from collections.abc import AsyncIterator
from contextlib import asynccontextmanager
from typing import AsyncIterator
import sentry_sdk
from fastapi import FastAPI

View file

@ -5,7 +5,7 @@ Stage 1b: greedy filling of rectangular MKD with 3 strategies. STRtree for colli
Performance target: <=10s per variant; fallback acceptance 15s.
"""
from app.schemas.concept import ConceptInput, ConceptVariant, FinancialModel, TEAP
from app.schemas.concept import TEAP, ConceptInput, ConceptVariant, FinancialModel
def generate_stub(payload: ConceptInput) -> list[ConceptVariant]:

View file

@ -45,6 +45,9 @@ line-length = 100
[tool.ruff.lint]
select = ["E", "F", "I", "B", "UP", "N", "RUF", "ASYNC"]
# RUF001/002/003 — ambiguous Unicode (Cyrillic vs Latin lookalikes).
# Off because the project is Russian-language; comments/docstrings legitimately use Cyrillic.
ignore = ["RUF001", "RUF002", "RUF003"]
[tool.mypy]
python_version = "3.12"