Skip to content

Commit

Permalink
add error to isort
Browse files Browse the repository at this point in the history
  • Loading branch information
Sovraska committed Dec 21, 2023
1 parent db16cfd commit 315ac71
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions app/api/endpoints/achievement.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
from fastapi import APIRouter, Depends
from sqlalchemy.ext.asyncio import AsyncSession

from app.api.validators import check_name_duplicate
from app.core.db import get_async_session
from app.crud import achievement_crud
from app.schemas.achievement import AchievementCreate, AchievementRead
from app.services.endpoints_services import delete_obj
from app.api.validators import check_name_duplicate
from app.core.db import get_async_session


router = APIRouter()

Expand Down

0 comments on commit 315ac71

Please sign in to comment.