Skip to content
This repository was archived by the owner on Oct 18, 2022. It is now read-only.

Commit b6dfaf0

Browse files
authored
Merge pull request #4 from orarbel/patch-1
Fixed ApiJSONEncoder calling super.
2 parents 88ffe20 + fcde37d commit b6dfaf0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ class ApiJSONEncoder(DynamicJSONEncoder):
155155
return list(o)
156156

157157
# Fallback
158-
return super(DynamicJSONEncoder, self).default(o)
158+
return super(ApiJSONEncoder, self).default(o)
159159
```
160160

161161
Now, just install the encoder to your Flask:

0 commit comments

Comments
 (0)