diff --git a/app/auth/profile.py b/app/auth/profile.py index 9d0c2fa..9e86ee2 100644 --- a/app/auth/profile.py +++ b/app/auth/profile.py @@ -26,7 +26,11 @@ def change_password(): else: flash("Error Invalid Password") return(redirect(url_for('prof.change_password'))) - return render_template('change_password.html', title='Change Password', form=form) + return render_template( + 'change_password.html', + title='Change Password', + form=form, + ) @prof.route("/edit-profile", methods=["GET", "POST"])