Updated docstrings to maintain line length
This commit is contained in:
parent
184437b438
commit
0442ce0930
1 changed files with 1 additions and 6 deletions
|
|
@ -245,7 +245,6 @@ def locate_app(module_name, app_name, raise_if_not_found=True):
|
||||||
|
|
||||||
def get_version(ctx, param, value):
|
def get_version(ctx, param, value):
|
||||||
"""
|
"""
|
||||||
|
|
||||||
Prints out the Python version, the Flask version, and the Werkzeug
|
Prints out the Python version, the Flask version, and the Werkzeug
|
||||||
(a WSGI utility for WSGI applications) version.
|
(a WSGI utility for WSGI applications) version.
|
||||||
|
|
||||||
|
|
@ -301,12 +300,8 @@ class DispatchingApp:
|
||||||
def _load_in_background(self):
|
def _load_in_background(self):
|
||||||
def _load_app():
|
def _load_app():
|
||||||
"""
|
"""
|
||||||
|
|
||||||
Loads the application and sets up the request context.
|
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
|
Written by Trelent
|
||||||
"""
|
"""
|
||||||
__traceback_hide__ = True # noqa: F841
|
__traceback_hide__ = True # noqa: F841
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue