From bd3160643f4c348da6f4498a746fe5c4c1d0917b Mon Sep 17 00:00:00 2001 From: Thomas Forgione Date: Mon, 15 Jul 2024 13:44:26 +0200 Subject: [PATCH] Remove print --- app.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/app.py b/app.py index a2543a8..3bd4e45 100755 --- a/app.py +++ b/app.py @@ -61,7 +61,6 @@ def object(id: int): @app.route('/scan/') 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'