removed all print statments

This commit is contained in:
2000-Trek 2023-06-09 19:37:30 +02:00
parent 66c0931ce6
commit 6f2504059e

View file

@ -123,30 +123,22 @@ def request_addtag(data):
def get_id():
global finished
tag_id = int(request.args.get("id"))
print(tag_id)
c.execute(f"SELECT * FROM tags WHERE tagid ={tag_id}")
tag_list = c.fetchall()
print(tag_list)
if tag_list != []:
tag = tag_list[0]
print("aha")
print(users.qsize())
if users.qsize() == 0:
print("wants to change")
c.execute(f"UPDATE users SET balance = balance - 1 WHERE id={tag[1]}")
print("changed")
conn.commit()
return make_response("True")
elif users.qsize() > 0:
print("added")
user = users.get()
c.execute(f"INSERT OR IGNORE INTO tags (tagid, userid) VALUES ({tag_id}, {user})")
conn.commit()
finished = user
return make_response("True")
else:
print("Error")
return make_response("False")