fix add_file bug

This commit is contained in:
shixian.shi 2024-01-24 16:10:14 +08:00
parent ec1c46280b
commit 09372cb279

View File

@ -63,7 +63,7 @@ def add_file_root_path(model_or_path: str, file_path_metas: dict, cfg = {}):
elif isinstance(v, dict):
if k not in cfg:
cfg[k] = {}
return add_file_root_path(model_or_path, v, cfg[k])
add_file_root_path(model_or_path, v, cfg[k])
return cfg