add if type-checking

This commit is contained in:
sergey 2024-10-08 19:43:33 +03:00
parent 9020f8880b
commit eca4cddf59
1 changed files with 5 additions and 0 deletions

View File

@ -7,6 +7,11 @@ from config import conf
from auth import verify_user_pwd from auth import verify_user_pwd
from typing import TYPE_CHECKING
if TYPE_CHECKING:
from fastapi.security import HTTPBasicCredentials
router = APIRouter() router = APIRouter()