(
self, keys: KeysCollection, mapping_file_path: Path | str = "mapping.json", allow_missing_keys: bool = False
)
| 333 | """ |
| 334 | |
| 335 | def __init__( |
| 336 | self, keys: KeysCollection, mapping_file_path: Path | str = "mapping.json", allow_missing_keys: bool = False |
| 337 | ) -> None: |
| 338 | super().__init__(keys, allow_missing_keys) |
| 339 | self.mapping = WriteFileMapping(mapping_file_path) |
| 340 | |
| 341 | def __call__(self, data: Mapping[Hashable, NdarrayOrTensor]) -> dict[Hashable, NdarrayOrTensor]: |
| 342 | d = dict(data) |
nothing calls this directly
no test coverage detected