(self, *args: t.Any, **kwds: t.Any)
| 236 | """ |
| 237 | |
| 238 | def __init__(self, *args: t.Any, **kwds: t.Any) -> None: |
| 239 | dict.__init__(self, *args, **kwds) |
| 240 | self._ensure_subconfig() |
| 241 | |
| 242 | def _ensure_subconfig(self) -> None: |
| 243 | """ensure that sub-dicts that should be Config objects are |
no test coverage detected