From b70176f8c726029d80d2ef8cd70eab7715813f9b Mon Sep 17 00:00:00 2001 From: Andres Sanchez Date: Thu, 1 Nov 2018 10:36:34 -0600 Subject: [PATCH] Fixed character limit per line in requested changes for app.py --- sanic/app.py | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/sanic/app.py b/sanic/app.py index 500a6d45..e55b6bd8 100644 --- a/sanic/app.py +++ b/sanic/app.py @@ -836,7 +836,12 @@ class Sanic: **kwargs ): if "loop" in kwargs: - raise TypeError("loop is not a valid argument. To use an existing loop, change to create_server().\nSee more: https://sanic.readthedocs.io/en/latest/sanic/deploying.html#asynchronous-support") + raise TypeError( + "loop is not a valid argument. To use an existing loop, " + "change to create_server().\nSee more: " + "https://sanic.readthedocs.io/en/latest/sanic/deploying.html" + "#asynchronous-support" + ) """Run the HTTP Server and listen until keyboard interrupt or term signal. On termination, drain connections before closing.