Browse Source
✏️ Fix typo on dependencies utils and cleanup unused variable (#1912)
pull/2102/head
Marcelo Trylesinski
4 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with
1 additions and
3 deletions
-
fastapi/dependencies/models.py
-
fastapi/dependencies/utils.py
|
|
@ -3,8 +3,6 @@ from typing import Callable, List, Optional, Sequence |
|
|
|
from fastapi.security.base import SecurityBase |
|
|
|
from pydantic.fields import ModelField |
|
|
|
|
|
|
|
param_supported_types = (str, int, float, bool) |
|
|
|
|
|
|
|
|
|
|
|
class SecurityRequirement: |
|
|
|
def __init__( |
|
|
|
|
|
@ -94,7 +94,7 @@ def check_file_field(field: ModelField) -> None: |
|
|
|
|
|
|
|
assert __version__ |
|
|
|
try: |
|
|
|
# parse_options_header is only available in the right multlipart |
|
|
|
# parse_options_header is only available in the right multipart |
|
|
|
from multipart.multipart import parse_options_header |
|
|
|
|
|
|
|
assert parse_options_header |
|
|
|