fixed linting issues
This commit is contained in:
@@ -1,10 +1,9 @@
|
||||
# modules/admin/api.py
|
||||
from typing import Annotated
|
||||
from fastapi import APIRouter, Depends, Body # Import Body
|
||||
from fastapi import APIRouter, Depends # Import Body
|
||||
from pydantic import BaseModel # Import BaseModel
|
||||
from sqlalchemy.orm import Session
|
||||
from core.database import Base, get_db
|
||||
from modules.auth.models import User, UserRole
|
||||
from core.database import get_db
|
||||
from modules.auth.dependencies import admin_only
|
||||
from .tasks import cleardb
|
||||
|
||||
|
||||
Reference in New Issue
Block a user