From c102e761464e0989d2a39faf8898932c09e4d0c8 Mon Sep 17 00:00:00 2001 From: Tue Topholm Date: Thu, 1 Jun 2017 23:01:27 +0200 Subject: [PATCH] Fixed line width --- sanic/response.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/sanic/response.py b/sanic/response.py index 645bcaa2..0f4d1356 100644 --- a/sanic/response.py +++ b/sanic/response.py @@ -233,7 +233,8 @@ class HTTPResponse(BaseHTTPResponse): return self._cookies -def json(body, status=200, headers=None, content_type="application/json", **kwargs): +def json(body, status=200, headers=None, + content_type="application/json", **kwargs): """ Returns response object with body in json format. :param body: Response data to be serialized.