style: Ruff-Formatierung auf Alicias Empfehlungs-Engine
Quality Gate / 🛡️ Lint + Type Check + Tests (push) Failing after 12m52s

This commit is contained in:
Hermes Agent
2026-06-22 00:22:46 +02:00
parent 0a8f5f62f3
commit 0901a4b99a
2 changed files with 2 additions and 3 deletions
+1 -3
View File
@@ -7,9 +7,7 @@ FACTOR_DAUER: float = 33.33
FACTOR_INTERAKTION: float = 33.33
def score_berechnen(
spiel: SPIEL, praeferenzen: dict[str, float]
) -> float:
def score_berechnen(spiel: SPIEL, praeferenzen: dict[str, float]) -> float:
"""Berechnet den Match-Score für ein Spiel.
Bewertet das Spiel nach drei Dimensionen:
+1
View File
@@ -13,6 +13,7 @@ class SPIEL(TypedDict):
komplexitaet: float
kategorien: list[str]
MIN_SPIELER_DEFAULT = 1
MAX_SPIELER_DEFAULT = 10