From 592ee5f8394b27318573fd17fd084d4b39bb6421 Mon Sep 17 00:00:00 2001 From: ctlaltdefeat Date: Sat, 21 Jan 2017 23:02:02 +0200 Subject: [PATCH] fixed line length to satisfy travis --- sanic/response.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sanic/response.py b/sanic/response.py index 9fc1b598..c29a473e 100644 --- a/sanic/response.py +++ b/sanic/response.py @@ -150,8 +150,8 @@ def json(body, status=200, headers=None, **kwargs): :param headers: Custom Headers. :param \**kwargs: Remaining arguments that are passed to the json encoder. """ - return HTTPResponse(json_dumps(body, **kwargs), headers=headers, status=status, - content_type="application/json") + return HTTPResponse(json_dumps(body, **kwargs), headers=headers, + status=status, content_type="application/json") def text(body, status=200, headers=None):