We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 44dfaca commit 0612694Copy full SHA for 0612694
1 file changed
metaflow/package/__init__.py
@@ -601,6 +601,9 @@ def _check_tuple(path_tuple):
601
raise NonUniqueFileNameToFilePathMappingException(
602
file_name, [deco_module_paths[file_name], file_path]
603
)
604
+ elif file_type == ContentType.USER_CONTENT:
605
+ pass # For now pass -- it will be included normally but we need to
606
+ # merge it.
607
else:
608
raise ValueError(f"Unknown file type: {file_type}")
609
return path_tuple
0 commit comments