diff --git a/mlbstatsapi/models/stats/pitching.py b/mlbstatsapi/models/stats/pitching.py index c71d4ba..3d4f922 100644 --- a/mlbstatsapi/models/stats/pitching.py +++ b/mlbstatsapi/models/stats/pitching.py @@ -150,6 +150,10 @@ class SimplePitchingSplit: The number of inherited runners scored by the pitcher. inheritedrunners : int The number of inherited runners for the pitcher. + age : int + The age of the pitcher. + caughtstealingpercentage : str + The caught stealing percentage for the pitcher. """ summary: Optional[str] = None gamesplayed: Optional[int] = None @@ -216,6 +220,8 @@ class SimplePitchingSplit: balls: Optional[int] = None outspitched: Optional[int] = None rbi: Optional[int] = None + age: Optional[int] = None + caughtstealingpercentage: Optional[str] = None def __repr__(self) -> str: kws = [f'{key}={value}' for key, value in self.__dict__.items() if value is not None and value]