Skip to content

Commit

Permalink
Merge pull request #34 from Its-Haze/fix-broken-patch
Browse files Browse the repository at this point in the history
Fix leagueRPC crashing because of keyword arguments.
  • Loading branch information
Its-Haze authored Apr 24, 2024
2 parents 436dbd6 + 191a8a4 commit 8859379
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion league_rpc/champion.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
def get_specific_champion_data(name: str) -> dict[str, Any]:
response: requests.Response = requests.get(
url=DDRAGON_CHAMPION_DATA.format_map(
map={"version": get_latest_version(), "name": name}
{"version": get_latest_version(), "name": name}
),
timeout=15,
)
Expand Down

0 comments on commit 8859379

Please sign in to comment.