Skip to content

Commit

Permalink
Merge pull request #4719 from pallets/remove-lazy-option
Browse files Browse the repository at this point in the history
remove `__traceback_hide__`
  • Loading branch information
davidism authored Aug 1, 2022
2 parents 633f421 + 7d53a12 commit 3e5ca29
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions src/flask/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -214,8 +214,6 @@ def prepare_import(path):


def locate_app(module_name, app_name, raise_if_not_found=True):
__traceback_hide__ = True # noqa: F841

try:
__import__(module_name)
except ImportError:
Expand Down Expand Up @@ -296,8 +294,6 @@ def load_app(self) -> Flask:
this multiple times will just result in the already loaded app to
be returned.
"""
__traceback_hide__ = True # noqa: F841

if self._loaded_app is not None:
return self._loaded_app

Expand Down

0 comments on commit 3e5ca29

Please sign in to comment.