(raw_data: Any)
| 23 | |
| 24 | |
| 25 | def _normalize_mapping(raw_data: Any) -> dict[str, Any]: |
| 26 | if isinstance(raw_data, dict): |
| 27 | return raw_data |
| 28 | return OmegaConf.to_container(OmegaConf.create(raw_data), resolve=True) # type: ignore[return-value] |
| 29 | |
| 30 | |
| 31 | def _strip_optional(value_type: Any) -> Any: |
no test coverage detected