Skip to content

Commit

Permalink
small improvement
Browse files Browse the repository at this point in the history
  • Loading branch information
probablyjassin committed Nov 4, 2024
1 parent d38aaad commit c870367
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cogs/profiles/player.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ def __init__(self):
)

player_rank: Rank = Rank.getRankByMMR(player.mmr)
embed.add_field(name="Rank", value=f"{player_rank.rankname}")
embed.add_field(name="Rank", value=player_rank.rankname)

player_wins = len([delta for delta in player.history if delta >= 0])
player_losses = len([delta for delta in player.history if delta < 0])
Expand Down

0 comments on commit c870367

Please sign in to comment.