diff options
author | Botond Hende <nettingman@gmail.com> | 2024-08-30 20:25:37 +0200 |
---|---|---|
committer | Botond Hende <nettingman@gmail.com> | 2024-08-30 20:25:37 +0200 |
commit | a1de271e186a518932307bb7775f670d8ccd92f5 (patch) | |
tree | 20514cca8267d0d8bf0845b58e06b11b15d823fc /apirouters/agents.py | |
parent | d41aa536f647726f3d58eb24ae16d5c75d278e0c (diff) |
changed import path to relative modul import paths
Diffstat (limited to 'apirouters/agents.py')
-rw-r--r-- | apirouters/agents.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apirouters/agents.py b/apirouters/agents.py index b8c0b95..b16ab6d 100644 --- a/apirouters/agents.py +++ b/apirouters/agents.py @@ -5,7 +5,7 @@ from fastapi import APIRouter, Depends, Response from fastapi.security import OAuth2PasswordBearer, OAuth2PasswordRequestForm from passlib.context import CryptContext -from modules.database import cursor, conn +from ..modules.database import cursor, conn router = APIRouter() pwd_context = CryptContext(schemes=["bcrypt"], deprecated="auto") |