From 882d95ae728b96a95e7c62c22cbfa352d137c277 Mon Sep 17 00:00:00 2001 From: Invinsible-Coder <192500415+Invinsible-Coder@users.noreply.github.com> Date: Wed, 18 Mar 2026 19:45:53 +0530 Subject: [PATCH] Fix typo in return statement line 71 --- app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app.py b/app.py index 3083c60..5f4f9f1 100644 --- a/app.py +++ b/app.py @@ -68,7 +68,7 @@ def load_user(user_id): @app.route('/') def index(): if not current_user.is_authenticated: - retur redirect(url_for('login')) + return redirect(url_for('login')) status_filter = request.args.get('status', 'all') priority_filter = request.args.get('priority', 'all')