fix response bases order

This commit is contained in:
David Lord 2020-10-31 19:19:11 -07:00
parent 1b5c7e4e12
commit f868dcc118

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