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