Skip to content

Commit 3801cdf

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent aadc52f commit 3801cdf

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

tests/test_flask_encoder.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,8 @@ def test_json_encoder():
2020

2121
s = json.dumps(
2222
datetime.datetime.now(tz=datetime.timezone.utc).replace(tzinfo=None),
23-
cls=FlaskJSONEncoder)
23+
cls=FlaskJSONEncoder,
24+
)
2425
assert s.endswith('Z"')
2526

2627
s = json.dumps(Decimal(1.01), cls=FlaskJSONEncoder)

0 commit comments

Comments
 (0)