From ebcb0362c66e5f6c783d8dbe9912db5ed90a922c Mon Sep 17 00:00:00 2001 From: luxferre Date: Tue, 9 Jun 2026 14:47:37 +0100 Subject: [PATCH] fix: pycharm import error --- src/user/router.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/user/router.py b/src/user/router.py index 64d4de8..6139cdc 100644 --- a/src/user/router.py +++ b/src/user/router.py @@ -10,8 +10,8 @@ Endpoints: from fastapi import APIRouter, status, BackgroundTasks -from auth.exceptions import UnauthorizedException -from organisation.exceptions import OrgNotFoundException +from src.auth.exceptions import UnauthorizedException +from src.organisation.exceptions import OrgNotFoundException from src.user.schemas import ( UserResponse, OIDCClaims,