From 81a8a99b6e7fd0865ab87e70b8c3af2a782d3047 Mon Sep 17 00:00:00 2001 From: growingdever Date: Tue, 14 Feb 2017 17:20:39 +0900 Subject: [PATCH] wrap over width comment --- sanic/blueprints.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/sanic/blueprints.py b/sanic/blueprints.py index a123a7a3..155d187b 100644 --- a/sanic/blueprints.py +++ b/sanic/blueprints.py @@ -87,7 +87,8 @@ class Blueprint: def add_route(self, handler, uri, methods=frozenset({'GET'}), host=None): """ Creates a blueprint route from a function. - :param handler: Function for handling uri requests. Accepts function, or class instance with a view_class method. + :param handler: Function for handling uri requests. Accepts function, + or class instance with a view_class method. :param uri: Endpoint at which the route will be accessible. :param methods: List of acceptable HTTP methods. :return: function or class instance