Skip to content

Commit

Permalink
relative imports
Browse files Browse the repository at this point in the history
  • Loading branch information
nrjadkry committed Oct 2, 2023
1 parent 8c4eefa commit 73b3fea
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/backend/app/db/database.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
from sqlalchemy.ext.declarative import declarative_base
from sqlalchemy.orm import sessionmaker

from ..config import settings
from app.config import settings

engine = create_engine(settings.FMTM_DB_URL)
SessionLocal = sessionmaker(autocommit=False, autoflush=False, bind=engine)
Expand Down
2 changes: 1 addition & 1 deletion src/backend/app/db/db_models.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
relationship,
)

from ..models.enums import (
from app.models.enums import (
BackgroundTaskStatus,
MappingLevel,
MappingPermission,
Expand Down

0 comments on commit 73b3fea

Please sign in to comment.