From b299792ebf4e5b35a5b73d48015e332dd0af4cfa Mon Sep 17 00:00:00 2001 From: Marcelo Trylesinski Date: Thu, 5 Nov 2020 22:09:17 +0100 Subject: [PATCH] =?UTF-8?q?=E2=9C=8F=EF=B8=8F=20Fix=20typo=20on=20dependen?= =?UTF-8?q?cies=20utils=20and=20cleanup=20unused=20variable=20(#1912)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- fastapi/dependencies/models.py | 2 -- fastapi/dependencies/utils.py | 2 +- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/fastapi/dependencies/models.py b/fastapi/dependencies/models.py index 5aff1de3b..4e2294bd7 100644 --- a/fastapi/dependencies/models.py +++ b/fastapi/dependencies/models.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__( diff --git a/fastapi/dependencies/utils.py b/fastapi/dependencies/utils.py index 7c9f7e847..35329a46a 100644 --- a/fastapi/dependencies/utils.py +++ b/fastapi/dependencies/utils.py @@ -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