main
Deploy Iddaai Backend / build-and-deploy (push) Failing after 2m6s

This commit is contained in:
2026-05-12 02:43:02 +03:00
parent f8599bdb9a
commit b6d64b59bf
35 changed files with 1400 additions and 630 deletions
+2 -2
View File
@@ -42,7 +42,7 @@ class OddsPrediction:
third_likely_score: str = "2-1"
# Value bet opportunities
value_bets: list = None
value_bets: Optional[list] = None
confidence: float = 0.0
@@ -84,7 +84,7 @@ class OddsPredictorEngine:
try:
self.value_calc = get_value_calculator()
except Exception:
self.value_calc = None
self.value_calc = None # type: ignore[assignment]
self.default_ms_h = 2.65
self.default_ms_d = 3.20
self.default_ms_a = 2.65