From 61893754e3a1d7467012ae994386a2779904a752 Mon Sep 17 00:00:00 2001 From: "morty.wang" <790538318@qq.com> Date: Fri, 24 Mar 2023 16:58:19 +0000 Subject: [PATCH] match_id should be a string not int --- src/riotwatcher/_apis/league_of_legends/MatchApiV5.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/riotwatcher/_apis/league_of_legends/MatchApiV5.py b/src/riotwatcher/_apis/league_of_legends/MatchApiV5.py index 36f102d..9ea0c05 100644 --- a/src/riotwatcher/_apis/league_of_legends/MatchApiV5.py +++ b/src/riotwatcher/_apis/league_of_legends/MatchApiV5.py @@ -84,14 +84,14 @@ def matchlist_by_puuid( ) @remap_region_to_platform(1) - def timeline_by_match(self, region: str, match_id: int): + def timeline_by_match(self, region: str, match_id: str): """ Get match timeline by match ID. Not all matches have timeline data. :param string region: The region to execute this request on - :param long match_id: The match ID. + :param string match_id: The match ID. :returns: MatchTimelineDto """