Remove redundant conversion (we didn't use defaultdict anymore)

This commit is contained in:
Roy Nieterau 2023-01-25 18:10:01 +01:00
parent 396ce2d3aa
commit f76897187f

View file

@ -135,8 +135,8 @@ class HoudiniCreatorBase(object):
family = family_parm.eval()
cache_legacy.setdefault(family, []).append(node)
shared_data["houdini_cached_subsets"] = dict(cache)
shared_data["houdini_cached_legacy_subsets"] = dict(cache_legacy)
shared_data["houdini_cached_subsets"] = cache
shared_data["houdini_cached_legacy_subsets"] = cache_legacy
return shared_data