diff --git a/files/routes/hats.py b/files/routes/hats.py index da67c7fea..5de87664b 100644 --- a/files/routes/hats.py +++ b/files/routes/hats.py @@ -66,7 +66,6 @@ def hats(v:User): sales = g.db.query(func.sum(User.coins_spent_on_hats)).scalar() num_of_hats = g.db.query(HatDef).filter(HatDef.submitter_id == None).count() - print(hats, flush=True) return render_template("hats.html", owned_hat_ids=owned_hat_ids, hats=hats, v=v, sales=sales, num_of_hats=num_of_hats, next_exists=num_of_hats, page=page, sort=sort) @app.post("/buy_hat/")