From fb53891bc21d96b82c650e07ba2bb20393db3959 Mon Sep 17 00:00:00 2001 From: jessikitty Date: Tue, 27 Jan 2026 23:05:11 +1100 Subject: [PATCH] Fix import: get_current_user from auth module not security --- backend/app/api/v1/chores.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/app/api/v1/chores.py b/backend/app/api/v1/chores.py index 7c09fe3..f5799df 100644 --- a/backend/app/api/v1/chores.py +++ b/backend/app/api/v1/chores.py @@ -5,7 +5,7 @@ from typing import List from datetime import datetime from app.core.database import get_db -from app.core.security import get_current_user +from app.api.v1.auth import get_current_user from app.models.user import User from app.models.chore import Chore, ChoreStatus from app.schemas import chore as chore_schemas