CLEAN Formatted with black

This commit is contained in:
WaylonWalker 2020-02-29 11:38:18 -06:00
parent c9160b7575
commit 80639eea0b
5 changed files with 161 additions and 16 deletions

View file

@ -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,
}

View file

@ -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