Fix lokrez import
parent
d9ae5ae346
commit
132c469036
|
@ -395,6 +395,12 @@ def main():
|
||||||
|
|
||||||
top_players[player.gamerTag] = player
|
top_players[player.gamerTag] = player
|
||||||
|
|
||||||
|
# Re-sort top players by their placement
|
||||||
|
top_players = sorted(
|
||||||
|
top_players.values(),
|
||||||
|
key = lambda p: p.placement,
|
||||||
|
)
|
||||||
|
|
||||||
else:
|
else:
|
||||||
|
|
||||||
# Get infos from smash.gg and write the config file
|
# Get infos from smash.gg and write the config file
|
||||||
|
|
Loading…
Reference in New Issue