Browse Source

[Fix] Lint issue remove unused type: ignore comment

Signed-off-by: Kent Huang <[email protected]>
pull/12935/head
Kent Huang 4 months ago
parent
commit
70037c9d56
  1. 2
      fastapi/encoders.py

2
fastapi/encoders.py

@ -50,7 +50,7 @@ def decimal_encoder(dec_value: Decimal) -> Union[int, float]:
1
"""
exponent = dec_value.as_tuple().exponent
if isinstance(exponent, int) and exponent >= 0: # type: ignore[operator]
if isinstance(exponent, int) and exponent >= 0:
return int(dec_value)
else:
return float(dec_value)

Loading…
Cancel
Save