Radu Grosu
Radu Grosu
Somewhat surprisingly, `glom.assign(obj, glom.Coalesce(*specs), value)` doesn't work. Is there an easier way to get the result, e.g. something like: ``` def glom_assign(config: Config, spec: Union[str, glom.Coalesce], value: Any) -> None:...
## Patch Description Solves this bug: ```python from clearml.utilities.pyhocon.config_parser import ConfigFactory ConfigFactory.from_dict({"": 1}) ``` fails with `IndexError: list index out of range`.
I'm using the following _namespace_-package structure (the namespace is in this example `nametest`): ``` root ├── name-common │ ├── nametest │ │ ├── metrics.py │ │ └── utils.py │ ├──...