(self, data: dict[str, Any] | None = None)
| 217 | """A wrapper around metadata dictionary with convenient access methods""" |
| 218 | |
| 219 | def __init__(self, data: dict[str, Any] | None = None): |
| 220 | self._data = data or {} |
| 221 | |
| 222 | def get_path(self, path: str, default: Any = None) -> Any: |
| 223 | """Get value from nested dictionary using dot notation path |
nothing calls this directly
no outgoing calls
no test coverage detected