(value: Any)
| 51 | |
| 52 | |
| 53 | def _as_mapping(value: Any) -> Mapping[str, Any]: |
| 54 | if isinstance(value, Mapping): |
| 55 | return value |
| 56 | return {} |
| 57 | |
| 58 | |
| 59 | def _merge_dicts(base: Mapping[str, Any], override: Mapping[str, Any]) -> dict[str, Any]: |
no outgoing calls
no test coverage detected