We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6bb5528 commit 4c3b048Copy full SHA for 4c3b048
1 file changed
metaflow/package/__init__.py
@@ -611,6 +611,9 @@ def _check_tuple(path_tuple):
611
raise NonUniqueFileNameToFilePathMappingException(
612
file_name, [deco_module_paths[file_name], file_path]
613
)
614
+ elif file_type == ContentType.USER_CONTENT:
615
+ pass # For now pass -- it will be included normally but we need to
616
+ # merge it.
617
else:
618
raise ValueError(f"Unknown file type: {file_type}")
619
return path_tuple
0 commit comments