CLEAN Formatted with black

This commit is contained in:
WaylonWalker 2020-02-29 11:40:49 -06:00
parent d57382162b
commit 46b945bb04

View file

@ -30,8 +30,11 @@
""" """
from typing import Dict from typing import Dict
from kedro.pipeline import Pipeline from kedro.pipeline import Pipeline
from default_kedro_157.pipelines import data_engineering as de
from default_kedro_157.pipelines import data_science as ds
########################################################################### ###########################################################################
# Here you can find an example pipeline, made of two modular pipelines. # Here you can find an example pipeline, made of two modular pipelines.
@ -40,9 +43,6 @@ from kedro.pipeline import Pipeline
# well as pipelines/data_science AND pipelines/data_engineering # well as pipelines/data_science AND pipelines/data_engineering
# ------------------------------------------------------------------------- # -------------------------------------------------------------------------
from default_kedro_157.pipelines import data_engineering as de
from default_kedro_157.pipelines import data_science as ds
def create_pipelines(**kwargs) -> Dict[str, Pipeline]: def create_pipelines(**kwargs) -> Dict[str, Pipeline]:
"""Create the project's pipeline. """Create the project's pipeline.