Files
WFL/services/standings_service.py

8 lines
247 B
Python

from repositories.standings_repository import replace_standings_for_season
def sync_standings(season: str, standings_rows: list[dict]) -> None:
replace_standings_for_season(
season=season,
standings_rows=standings_rows,
)