From 07139728e30243752e88002d0ee510bc07b05fe9 Mon Sep 17 00:00:00 2001 From: Adam Hopkins Date: Tue, 22 Mar 2022 23:20:04 +0200 Subject: [PATCH] Fix linting --- sanic/cli/app.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/sanic/cli/app.py b/sanic/cli/app.py index 05baf66c9a..db830e09a5 100644 --- a/sanic/cli/app.py +++ b/sanic/cli/app.py @@ -116,7 +116,8 @@ def _get_app(self): if module_name == "" and os.path.isdir(self.args.module): raise ValueError( "App not found.\n" - " Please use --simple if you are passing a directory to sanic.\n" + " Please use --simple if you are passing a " + "directory to sanic.\n" f" eg. sanic {self.args.module} --simple" )