remove leftover print statement

pull/146/head
Aevann 2023-05-05 06:51:53 +03:00
parent 4613bfe0c2
commit a76c12205d
1 changed files with 0 additions and 1 deletions

View File

@ -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/<int:hat_id>")