From d00b868b4092d306faa3e9561ee618b98c8e5f80 Mon Sep 17 00:00:00 2001 From: prryplatypus <25409753+prryplatypus@users.noreply.github.com> Date: Sat, 9 Oct 2021 19:48:09 +0200 Subject: [PATCH] Fix linting --- sanic/app.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/sanic/app.py b/sanic/app.py index a433ad91..c3f41449 100644 --- a/sanic/app.py +++ b/sanic/app.py @@ -217,9 +217,9 @@ class Sanic(BaseSanic, metaclass=TouchUpMeta): "You are trying to use uvloop, but uvloop is not " "installed in your system. In order to use uvloop " "you must first install it. Otherwise, you can disable " - "uvloop completely by setting the 'USE_UVLOOP' configuration " - "value to false. The app will now continue to run without " - "using uvloop." + "uvloop completely by setting the 'USE_UVLOOP' " + "configuration value to false. The app will now continue " + "to run without using uvloop." ) # uvloop requested and installed, but opted-out during install @@ -228,8 +228,8 @@ class Sanic(BaseSanic, metaclass=TouchUpMeta): "You are running the app using uvloop, but we've noticed " "that the 'SANIC_NO_UVLOOP' environment variable " "(used to opt-out of installing uvloop with Sanic) " - "is set to true. If you want to disable uvloop with Sanic, " - "set the 'USE_UVLOOP' configuration value to false." + "is set to true. If you want to disable uvloop with " + "Sanic, set the 'USE_UVLOOP' configuration value to false." ) self.router.ctx.app = self