(self)
| 355 | |
| 356 | @cached_property |
| 357 | def _getitem_methods(self) -> set[Callable]: |
| 358 | return self._safe_get_methods(self.allowed_getitem, "__getitem__") |
| 359 | |
| 360 | @cached_property |
| 361 | def _getattr_methods(self) -> set[Callable]: |
nothing calls this directly
no test coverage detected