Browse Source

🔥 Remove conditional that would only apply on Pydantic v1

pull/14575/head
Sebastián Ramírez 7 months ago
parent
commit
53aac26aad
  1. 3
      fastapi/routing.py

3
fastapi/routing.py

@ -188,9 +188,6 @@ def _prepare_response_content(
) )
for k, v in res.items() for k, v in res.items()
} }
elif dataclasses.is_dataclass(res):
assert not isinstance(res, type)
return dataclasses.asdict(res)
return res return res

Loading…
Cancel
Save