Updated docstrings to maintain line length

This commit is contained in:
Fluency 2021-12-14 21:56:55 -04:00 committed by GitHub
parent 184437b438
commit 0442ce0930
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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