style: fix ruff formatting in bracket_view and routes
CI / Lint (push) Successful in 6s
CI / Test (push) Successful in 14s
CI / Build & Push (push) Successful in 30s

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-04-23 20:22:56 -04:00
parent 2da60e27ae
commit 26678b164b
2 changed files with 32 additions and 6 deletions
+18 -3
View File
@@ -67,9 +67,24 @@ def build_bracket_view(year, bracket_payload, fetched_at=None):
"west_cf": west_cf,
"cup": cup,
"rounds": [
{"label": ROUND_LABELS[1], "round_num": 1, "east": east_r1, "west": west_r1},
{"label": ROUND_LABELS[2], "round_num": 2, "east": east_r2, "west": west_r2},
{"label": ROUND_LABELS[3], "round_num": 3, "east": east_cf, "west": west_cf},
{
"label": ROUND_LABELS[1],
"round_num": 1,
"east": east_r1,
"west": west_r1,
},
{
"label": ROUND_LABELS[2],
"round_num": 2,
"east": east_r2,
"west": west_r2,
},
{
"label": ROUND_LABELS[3],
"round_num": 3,
"east": east_cf,
"west": west_cf,
},
{"label": ROUND_LABELS[4], "round_num": 4, "cup": cup},
],
}