We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4098b98 commit c65d2c9Copy full SHA for c65d2c9
2 files changed
mlbstatsapi/models/game/gamedata/gamedata.py
@@ -70,6 +70,7 @@ class GameData:
70
officialscorer: Optional[Union[Person, dict]] = field(default_factory=dict)
71
primarydatacaster: Optional[Union[Person, dict]] = field(default_factory=dict)
72
secondarydatacaster: Optional[Union[Person, dict]] = field(default_factory=dict)
73
+ abschallenges: Optional[Union[List[dict], dict]] = field(default_factory=dict)
74
75
def __post_init__(self):
76
self.game = GameDataGame(**self.game)
pyproject.toml
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
5
[project]
6
name = "python-mlb-statsapi"
7
-version = "0.5.25"
+version = "0.5.26"
8
9
authors = [
10
{ name="Matthew Spah", email="spahmatthew@gmail.com" },
0 commit comments