Skip to content

Commit

Permalink
fix README.md example (meraki-analytics#457)
Browse files Browse the repository at this point in the history
  • Loading branch information
Uinelj authored Jul 13, 2024
1 parent e350ea1 commit e927d72
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,9 +53,9 @@ champions = cass.get_champions(region="NA")
random_champion = random.choice(champions)
print("He enjoys playing champions such as {name}.".format(name=random_champion.name))

challenger_league = cass.get_challenger_league(queue=cass.Queue.ranked_solo_fives)
challenger_league = cass.get_challenger_league(queue=cass.Queue.ranked_solo_fives, region="NA")
best_na = challenger_league[0].summoner
print("He's not as good as {name} at League, but probably a better python programmer!".format(name=best_na.name))
print("He's not as good as {name} at League, but probably a better python programmer!".format(name=best_na.account.name))
```

## Questions/Contributions
Expand Down

0 comments on commit e927d72

Please sign in to comment.