Fix python formatting and linting.
All checks were successful
CI / backend-lint (pull_request) Successful in 8s
CI / frontend-lint (pull_request) Successful in 29s

This commit is contained in:
2026-02-14 09:59:38 +01:00
parent 57023fc52a
commit 0728d55f06
4 changed files with 26 additions and 11 deletions

View File

@@ -8,6 +8,7 @@ from sqlalchemy.orm import joinedload, selectinload
from app.core.database import get_session
from app.models.boss_result import BossResult
from app.models.encounter import Encounter
from app.models.evolution import Evolution
from app.models.game import Game
from app.models.genlocke import GenlockeLeg
from app.models.genlocke_transfer import GenlockeTransfer
@@ -19,10 +20,13 @@ from app.schemas.run import (
RunResponse,
RunUpdate,
)
from app.models.evolution import Evolution
from app.models.genlocke import Genlocke
from app.services.families import build_families
from app.services.naming import get_naming_categories, strip_roman_suffix, suggest_names, to_roman
from app.services.naming import (
get_naming_categories,
strip_roman_suffix,
suggest_names,
to_roman,
)
router = APIRouter()