We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aadc52f commit 3801cdfCopy full SHA for 3801cdf
tests/test_flask_encoder.py
@@ -20,7 +20,8 @@ def test_json_encoder():
20
21
s = json.dumps(
22
datetime.datetime.now(tz=datetime.timezone.utc).replace(tzinfo=None),
23
- cls=FlaskJSONEncoder)
+ cls=FlaskJSONEncoder,
24
+ )
25
assert s.endswith('Z"')
26
27
s = json.dumps(Decimal(1.01), cls=FlaskJSONEncoder)
0 commit comments