Skip to content

Commit

Permalink
Remove unused import in main.py and fix import in entities.py
Browse files Browse the repository at this point in the history
  • Loading branch information
TanookiVerde committed Jan 16, 2024
1 parent f206ed4 commit 390bafd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion api/app/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

from app import config
from app.db import TORTOISE_ORM
from app.routers import auth, entities_mrg, entities_raw, entities_std, users, entities
from app.routers import auth, entities_mrg, entities_raw, entities_std, entities

logger.remove()
logger.add(sys.stdout, level=config.LOG_LEVEL)
Expand Down
2 changes: 1 addition & 1 deletion api/app/routers/entities.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# -*- coding: utf-8 -*-
from typing import Annotated

from fastapi import APIRouter, Depends, HTTPException
from fastapi import APIRouter, Depends
from tortoise.contrib.pydantic import pydantic_model_creator

from app.dependencies import get_current_active_user
Expand Down

0 comments on commit 390bafd

Please sign in to comment.