diff --git a/docs/_modules/hydra_zen/structured_configs/_implementations.html b/docs/_modules/hydra_zen/structured_configs/_implementations.html index 8ed77605..14a101d9 100644 --- a/docs/_modules/hydra_zen/structured_configs/_implementations.html +++ b/docs/_modules/hydra_zen/structured_configs/_implementations.html @@ -1458,7 +1458,7 @@

Source code for hydra_zen.structured_configs._implementations

if cast in {list, tuple, dict}: x = cls._sanitize_collection(x, convert_dataclass=settings["dataclass"]) - return field(default_factory=lambda: cast(x)) + return field(default_factory=lambda: cast(x)) # type: ignore return field(default_factory=lambda: x)