Hi, When I need to convert a `DictConfig` to a dictionary I need to do: ```python import OmegaConf x = OmegaConf.to_container(obj) ``` which is unnecessarily cumbersome, It would be better to have ```python x = obj.to_container() ``` same for lists.
Hi,
When I need to convert a
DictConfigto a dictionary I need to do:which is unnecessarily cumbersome, It would be better to have
same for lists.