From 0442ce093077d4d029e37383f496a32473405896 Mon Sep 17 00:00:00 2001 From: Fluency <93673101+fluencydoc@users.noreply.github.com> Date: Tue, 14 Dec 2021 21:56:55 -0400 Subject: [PATCH] Updated docstrings to maintain line length --- src/flask/cli.py | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/src/flask/cli.py b/src/flask/cli.py index c9c6a327..6e09ce37 100644 --- a/src/flask/cli.py +++ b/src/flask/cli.py @@ -245,7 +245,6 @@ def locate_app(module_name, app_name, raise_if_not_found=True): def get_version(ctx, param, value): """ - Prints out the Python version, the Flask version, and the Werkzeug (a WSGI utility for WSGI applications) version. @@ -301,12 +300,8 @@ class DispatchingApp: def _load_in_background(self): def _load_app(): """ - Loads the application and sets up the request context. - - This is a private function that does not need to be called from outside of this class. It loads the application, creates a new :class:`~flask_unchained.RequestLocal` object, and pushes it onto ``g`` so that its methods can be used in templates or other functions throughout the request lifecycle. - - + Written by Trelent """ __traceback_hide__ = True # noqa: F841