Skip to content

Commit

Permalink
Remove now-unnecessary ModuleNotFoundError handler
Browse files Browse the repository at this point in the history
Signed-off-by: Deepyaman Datta <deepyaman.datta@utexas.edu>
  • Loading branch information
deepyaman committed Jul 20, 2022
1 parent f1904b8 commit 936bde5
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions kedro/framework/project/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -284,8 +284,6 @@ def find_pipelines() -> Dict[str, Pipeline]:
pipeline_module = importlib.import_module(
f"{PACKAGE_NAME}.pipelines.{pipeline_name}"
)
except ModuleNotFoundError:
continue
except: # pylint: disable=bare-except # noqa: E722
warnings.warn(
f"An error occurred while importing the "
Expand Down

0 comments on commit 936bde5

Please sign in to comment.