remove prints
This commit is contained in:
parent
42b103343c
commit
1481817a72
1 changed files with 0 additions and 2 deletions
|
@ -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():
|
||||
|
|
Loading…
Reference in a new issue