Skip to content

Commit

Permalink
In Ark worker, use right type for ELO keys (#542)
Browse files Browse the repository at this point in the history
  • Loading branch information
shaldengeki committed Sep 22, 2024
1 parent ed7eeaf commit a1ebb23
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ark_nova_stats/emu_cup/analyze_games.py
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ def main(working_dir: str) -> int:
print(f"{p} doesn't have stats set!")
continue
elos: dict[int, PlayerELOs] = {
user_id: PlayerELOs(id=user_id, **vals)
int(user_id): PlayerELOs(id=user_id, **vals)
for user_id, vals in parsed_file["elos"].items()
}

Expand Down

0 comments on commit a1ebb23

Please sign in to comment.