Skip to content

Commit 0612694

Browse files
committed
Fix handling of user code (temporary)
1 parent 44dfaca commit 0612694

1 file changed

Lines changed: 3 additions & 0 deletions

File tree

metaflow/package/__init__.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -601,6 +601,9 @@ def _check_tuple(path_tuple):
601601
raise NonUniqueFileNameToFilePathMappingException(
602602
file_name, [deco_module_paths[file_name], file_path]
603603
)
604+
elif file_type == ContentType.USER_CONTENT:
605+
pass # For now pass -- it will be included normally but we need to
606+
# merge it.
604607
else:
605608
raise ValueError(f"Unknown file type: {file_type}")
606609
return path_tuple

0 commit comments

Comments
 (0)