style: apply ruff formatting
All checks were successful
CI / Lint (push) Successful in 6s
CI / Test (push) Successful in 7s
CI / Build & Push (push) Successful in 18s

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-03-29 18:41:10 -04:00
parent 47a8c34215
commit bf39bb6bd5
2 changed files with 10 additions and 4 deletions

View File

@@ -293,7 +293,9 @@ class TestMigrateStandingsTable:
migrate_standings_table(conn)
cols = [row[1] for row in conn.execute("PRAGMA table_info(standings)").fetchall()]
cols = [
row[1] for row in conn.execute("PRAGMA table_info(standings)").fetchall()
]
assert "division_abbrev" in cols
assert "conference_abbrev" in cols
assert "games_played" in cols