[L4] Fix relative module imports

This commit is contained in:
2026-03-27 16:02:06 +02:00
parent 7d75a15de1
commit 561004a49c
3 changed files with 6 additions and 6 deletions

View File

@@ -12,8 +12,8 @@ from sqlalchemy import (
)
from sqlalchemy.sql import select
from .database import metadata, SessionLocal
from .schemas import ProcessedAgentData, ProcessedAgentDataInDB
from database import metadata, SessionLocal
from schemas import ProcessedAgentData, ProcessedAgentDataInDB
# FastAPI app setup
app = FastAPI()