fix response bases order

This commit is contained in:
David Lord 2020-10-31 19:19:11 -07:00
parent 76467527d6
commit 1c6dc15420
No known key found for this signature in database
GPG key ID: 7A1C87E3F5BC42A8

View file

@ -90,7 +90,7 @@ class Request(RequestBase, JSONMixin):
attach_enctype_error_multidict(self)
class Response(ResponseBase, JSONMixin):
class Response(JSONMixin, ResponseBase):
"""The response object that is used by default in Flask. Works like the
response object from Werkzeug but is set to have an HTML mimetype by
default. Quite often you don't have to create this object yourself because