From 4cb734be4037b6667f97bce7b2d49867182df384 Mon Sep 17 00:00:00 2001 From: Trent Palmer Date: Sun, 9 Feb 2025 17:03:51 -0800 Subject: [PATCH] fix style app/auth/profile.py --- app/auth/profile.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) 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"])