Remove print

This commit is contained in:
Thomas Forgione 2024-07-15 13:44:26 +02:00
parent f6f34d6260
commit bd3160643f
1 changed files with 0 additions and 2 deletions

2
app.py
View File

@ -61,7 +61,6 @@ def object(id: int):
@app.route('/scan/<id>')
def scan(id: int):
conn = db.get()
print(session)
object = db.Object.get_from_id(id, conn)
return render_template('object.html', object=object)
@ -143,7 +142,6 @@ def use_last_calibration():
conn = db.get()
calibration = db.Calibration.get_last(conn)
session['calibration_id'] = calibration.id
print(session);
return 'ok'