Browse Source

refactor: Initialize 'errors' list and append 'e' to it in one line

pull/12452/head
saif 6 months ago
parent
commit
ef0dcd2f11
  1. 3
      fastapi/encoders.py

3
fastapi/encoders.py

@ -321,8 +321,7 @@ def jsonable_encoder(
try:
data = dict(obj)
except Exception as e:
errors: List[Exception] = []
errors.append(e)
errors: List[Exception] = [e]
try:
data = vars(obj)
except Exception as e:

Loading…
Cancel
Save