Release: Scouting API, roster refactor, and bug fixes #61

Merged
cal merged 46 commits from next-release into main 2026-03-09 14:12:42 +00:00
Showing only changes of commit fe5635ef0e - Show all commits

View File

@ -37,7 +37,7 @@ class PlayerModel(pydantic.BaseModel):
key_fangraphs: int = None
key_bbref: str = None
key_retro: str = None
offense_col: int = random.randint(1, 3)
offense_col: int = pydantic.Field(default_factory=lambda: random.randint(1, 3))
class PlayerList(pydantic.BaseModel):