pre-commit-ci-lite[bot]
5 months ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with
5 additions and
1 deletions
-
fastapi/dependencies/utils.py
|
|
|
@ -51,7 +51,11 @@ from fastapi.concurrency import ( |
|
|
|
contextmanager_in_threadpool, |
|
|
|
) |
|
|
|
from fastapi.dependencies.models import Dependant |
|
|
|
from fastapi.exceptions import DependencyScopeError, FastAPIError, FastAPIDeprecationWarning |
|
|
|
from fastapi.exceptions import ( |
|
|
|
DependencyScopeError, |
|
|
|
FastAPIDeprecationWarning, |
|
|
|
FastAPIError, |
|
|
|
) |
|
|
|
from fastapi.logger import logger |
|
|
|
from fastapi.security.oauth2 import SecurityScopes |
|
|
|
from fastapi.types import DependencyCacheKey |
|
|
|
|