Tamir Duberstein
4 days ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
5 changed files with
7 additions and
6 deletions
-
fastapi/encoders.py
-
fastapi/routing.py
-
fastapi/security/api_key.py
-
pyproject.toml
-
requirements-tests.txt
|
|
@ -240,7 +240,7 @@ def jsonable_encoder( |
|
|
|
custom_encoder=encoders, |
|
|
|
sqlalchemy_safe=sqlalchemy_safe, |
|
|
|
) |
|
|
|
if dataclasses.is_dataclass(obj): |
|
|
|
if dataclasses.is_dataclass(type(obj)): |
|
|
|
obj_dict = dataclasses.asdict(obj) |
|
|
|
return jsonable_encoder( |
|
|
|
obj_dict, |
|
|
|
|
|
@ -118,7 +118,7 @@ def _prepare_response_content( |
|
|
|
) |
|
|
|
for k, v in res.items() |
|
|
|
} |
|
|
|
elif dataclasses.is_dataclass(res): |
|
|
|
elif dataclasses.is_dataclass(type(res)): |
|
|
|
return dataclasses.asdict(res) |
|
|
|
return res |
|
|
|
|
|
|
|
|
|
@ -100,7 +100,7 @@ class APIKeyQuery(APIKeyBase): |
|
|
|
] = True, |
|
|
|
): |
|
|
|
self.model: APIKey = APIKey( |
|
|
|
**{"in": APIKeyIn.query}, # type: ignore[arg-type] |
|
|
|
**{"in": APIKeyIn.query}, |
|
|
|
name=name, |
|
|
|
description=description, |
|
|
|
) |
|
|
@ -188,7 +188,7 @@ class APIKeyHeader(APIKeyBase): |
|
|
|
] = True, |
|
|
|
): |
|
|
|
self.model: APIKey = APIKey( |
|
|
|
**{"in": APIKeyIn.header}, # type: ignore[arg-type] |
|
|
|
**{"in": APIKeyIn.header}, |
|
|
|
name=name, |
|
|
|
description=description, |
|
|
|
) |
|
|
@ -276,7 +276,7 @@ class APIKeyCookie(APIKeyBase): |
|
|
|
] = True, |
|
|
|
): |
|
|
|
self.model: APIKey = APIKey( |
|
|
|
**{"in": APIKeyIn.cookie}, # type: ignore[arg-type] |
|
|
|
**{"in": APIKeyIn.cookie}, |
|
|
|
name=name, |
|
|
|
description=description, |
|
|
|
) |
|
|
|
|
|
@ -123,6 +123,7 @@ source-includes = [ |
|
|
|
name = "fastapi-slim" |
|
|
|
|
|
|
|
[tool.mypy] |
|
|
|
plugins = ["pydantic.mypy"] |
|
|
|
strict = true |
|
|
|
|
|
|
|
[[tool.mypy.overrides]] |
|
|
|
|
|
@ -2,7 +2,7 @@ |
|
|
|
-r requirements-docs-tests.txt |
|
|
|
pytest >=7.1.3,<9.0.0 |
|
|
|
coverage[toml] >= 6.5.0,< 8.0 |
|
|
|
mypy ==1.8.0 |
|
|
|
mypy ==1.13.0 |
|
|
|
dirty-equals ==0.8.0 |
|
|
|
sqlmodel==0.0.23 |
|
|
|
flask >=1.1.2,<4.0.0 |
|
|
|