CLEAN Formatted with black
This commit is contained in:
parent
c9160b7575
commit
80639eea0b
5 changed files with 161 additions and 16 deletions
|
|
@ -33,7 +33,6 @@ from typing import Dict
|
|||
from kedro.pipeline import Pipeline
|
||||
|
||||
|
||||
|
||||
###########################################################################
|
||||
# Here you can find an example pipeline, made of two modular pipelines.
|
||||
#
|
||||
|
|
@ -56,7 +55,6 @@ def create_pipelines(**kwargs) -> Dict[str, Pipeline]:
|
|||
|
||||
"""
|
||||
|
||||
|
||||
data_engineering_pipeline = de.create_pipeline()
|
||||
data_science_pipeline = ds.create_pipeline()
|
||||
|
||||
|
|
@ -65,4 +63,3 @@ def create_pipelines(**kwargs) -> Dict[str, Pipeline]:
|
|||
"ds": data_science_pipeline,
|
||||
"__default__": data_engineering_pipeline + data_science_pipeline,
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -28,9 +28,7 @@
|
|||
|
||||
from setuptools import find_packages, setup
|
||||
|
||||
entry_point = (
|
||||
"default-kedro-157 = default_kedro_157.run:run_package"
|
||||
)
|
||||
entry_point = "default-kedro-157 = default_kedro_157.run:run_package"
|
||||
|
||||
|
||||
# get the dependencies and installs
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue