(self, item: _KeyType)
| 46 | vars(self).update(state) |
| 47 | |
| 48 | def __getitem__(self, item: _KeyType) -> "Patch": |
| 49 | validate_slice(item) |
| 50 | return Patch(location=self._location + [item], parent=self) |
| 51 | |
| 52 | def __getattr__(self, item: _KeyType) -> "Patch": |
| 53 | if item == "tolist": |
no test coverage detected