removed print

This commit is contained in:
bton 2024-02-23 23:57:54 +01:00
parent a8fec178e6
commit 64e0c340c3

View file

@ -142,7 +142,6 @@ def create_app(test_config=None):
try:
user_id = request.form["id"]
change = int(float(request.form["change"]) * 100)
print(change)
except:
return render_template("error.html", error_code="095")
c.execute(f"SELECT * FROM users WHERE id=?", [user_id])