✏️ Fix import typo in reference example for `Security` (#11168)

Co-authored-by: Sebastián Ramírez <tiangolo@gmail.com>
This commit is contained in:
0shah0 2024-08-17 12:23:52 +05:30 committed by GitHub
parent 066ea10ac5
commit 85cded53c8
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -2343,7 +2343,7 @@ def Security( # noqa: N802
```python ```python
from typing import Annotated from typing import Annotated
from fastapi import Depends, FastAPI from fastapi import Security, FastAPI
from .db import User from .db import User
from .security import get_current_active_user from .security import get_current_active_user