temp commit

This commit is contained in:
2020-10-10 10:43:00 +08:00
parent 776fe40199
commit 6ea13df465
10 changed files with 340 additions and 295 deletions

View File

@@ -28,7 +28,7 @@ class Load:
def transform_pipeline(pipeline_description):
if len(pipeline_description) == 0:
if pipeline_description is None or len(pipeline_description) == 0:
return lambda x: x
transform_list = [TRANSFORM.build_with(pd) for pd in pipeline_description]
return transforms.Compose(transform_list)