Skip to content

Commit 00fd6db

Browse files
committed
style: remove unused import and linting
1 parent a9be8fb commit 00fd6db

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/invenflask/app.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55
import os
66
import pandas as pd
77
from werkzeug.utils import secure_filename
8-
import re
98

109

1110
config_path = Path.cwd().joinpath('config.py')
@@ -232,7 +231,7 @@ def staff_edit(id):
232231
staff_title = request.form['title']
233232
staff_div = request.form['division']
234233
staff_dept = request.form['department']
235-
234+
236235
conn = get_db()
237236
conn.execute(
238237
'UPDATE staffs SET first_name = ?, last_name = ?, division = ?, department = ?, title = ? where id = ?',

0 commit comments

Comments
 (0)