fix: All files pre commit

This commit is contained in:
Eduardo Chiarotti
2024-08-23 10:49:58 -03:00
parent f5246039e5
commit d1aee5450f
11 changed files with 29 additions and 7 deletions

View File

@@ -113,7 +113,9 @@ def mock_router_factory(mock_crew_factory):
(
"route1"
if x.get("score", 0) > 80
else "route2" if x.get("score", 0) > 50 else "default"
else "route2"
if x.get("score", 0) > 50
else "default"
),
)
)