(cls, data: Mapping[str, Any], *, path: str)
| 210 | |
| 211 | @classmethod |
| 212 | def from_dict(cls, data: Mapping[str, Any], *, path: str) -> "JsonPathSplitConfig": |
| 213 | mapping = require_mapping(data, path) |
| 214 | json_path_value = require_str(mapping, "json_path", path, allow_empty=True) |
| 215 | return cls(json_path=json_path_value, path=path) |
| 216 | |
| 217 | def display_label(self) -> str: |
| 218 | return f"json_path({self.json_path})" |
nothing calls this directly
no test coverage detected