From a76c12205d2b985c352b27fa75af1e49b6560aee Mon Sep 17 00:00:00 2001 From: Aevann Date: Fri, 5 May 2023 06:51:53 +0300 Subject: [PATCH] remove leftover print statement --- files/routes/hats.py | 1 - 1 file changed, 1 deletion(-) 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/")