Remove print
This commit is contained in:
parent
f6f34d6260
commit
bd3160643f
2
app.py
2
app.py
|
|
@ -61,7 +61,6 @@ def object(id: int):
|
||||||
@app.route('/scan/<id>')
|
@app.route('/scan/<id>')
|
||||||
def scan(id: int):
|
def scan(id: int):
|
||||||
conn = db.get()
|
conn = db.get()
|
||||||
print(session)
|
|
||||||
object = db.Object.get_from_id(id, conn)
|
object = db.Object.get_from_id(id, conn)
|
||||||
return render_template('object.html', object=object)
|
return render_template('object.html', object=object)
|
||||||
|
|
||||||
|
|
@ -143,7 +142,6 @@ def use_last_calibration():
|
||||||
conn = db.get()
|
conn = db.get()
|
||||||
calibration = db.Calibration.get_last(conn)
|
calibration = db.Calibration.get_last(conn)
|
||||||
session['calibration_id'] = calibration.id
|
session['calibration_id'] = calibration.id
|
||||||
print(session);
|
|
||||||
return 'ok'
|
return 'ok'
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue