CHORE: Fixed pep8 test failure

This commit is contained in:
Luke Else 2024-02-14 22:14:42 +00:00
parent bbb4ed50fc
commit d74f26c028

View File

@ -68,7 +68,11 @@ def display_update(id: int):
db = UserController() db = UserController()
user = db.read_id(id) user = db.read_id(id)
return render_template('index.html', content="user.html", updating_user=user) return render_template(
'index.html',
content="user.html",
updating_user=user
)
@blueprint.post('/update/<int:id>') @blueprint.post('/update/<int:id>')