Skip to content

Commit 4c3b048

Browse files
committed
Fix handling of user code (temporary)
1 parent 6bb5528 commit 4c3b048

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
@@ -611,6 +611,9 @@ def _check_tuple(path_tuple):
611611
raise NonUniqueFileNameToFilePathMappingException(
612612
file_name, [deco_module_paths[file_name], file_path]
613613
)
614+
elif file_type == ContentType.USER_CONTENT:
615+
pass # For now pass -- it will be included normally but we need to
616+
# merge it.
614617
else:
615618
raise ValueError(f"Unknown file type: {file_type}")
616619
return path_tuple

0 commit comments

Comments
 (0)