Skip to content

Commit

Permalink
match_id should be a string not int
Browse files Browse the repository at this point in the history
  • Loading branch information
v2wy authored and pseudonym117 committed May 16, 2023
1 parent 8fe94b6 commit 6189375
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/riotwatcher/_apis/league_of_legends/MatchApiV5.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
"""
Expand Down

0 comments on commit 6189375

Please sign in to comment.