remove prints

This commit is contained in:
Maximilian Keßler 2023-12-27 17:33:34 +01:00
parent 42b103343c
commit 1481817a72
Signed by: max
GPG Key ID: BCC5A619923C0BA5

View File

@ -553,7 +553,6 @@ def build_variant_stats_by_variant(variant_rows: List[VariantRow]):
variant_stats_per_player[row.variant_id][row.num_players] = row.stats
variant_names[row.variant_id] = row.name
variant_stats[row.variant_id] += row.stats
print(variant_stats)
return variant_stats, variant_stats_per_player, variant_names
@ -642,7 +641,6 @@ def render_player_pages(env: jinja2.Environment, out_dir: Path):
games = get_games()
games_grouped_by_player = group_games_by_player(games)
print(games_grouped_by_player)
player_template = env.get_template('player.html')
for player_name, player_stat in player_stats.items():