From 99d9ebe7c51ffbb090b1dff88bf3ec6ef26d6918 Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Thu, 19 May 2022 03:59:20 +0000 Subject: [PATCH] [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --- src/flask/app.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/flask/app.py b/src/flask/app.py index ca2f2b9a..515a901a 100644 --- a/src/flask/app.py +++ b/src/flask/app.py @@ -524,7 +524,6 @@ class Flask(Scaffold): # For one, it might be created while the server is running (e.g. during # development). Also, Google App Engine stores static files somewhere - if self.has_static_folder: assert ( bool(static_host) == host_matching @@ -539,8 +538,8 @@ class Flask(Scaffold): view_func=lambda **kw: self_ref().send_static_file(**kw), # type: ignore # noqa: B950 ) - #Set the name of the Click group in case someone wants to add - #the app's commands to another CLI tool. + # Set the name of the Click group in case someone wants to add + # the app's commands to another CLI tool. self.cli.name = self.name def _is_setup_finished(self) -> bool: