(self, item: Any)
| 2120 | return False |
| 2121 | |
| 2122 | def _convert_scalar(self, item: Any): |
| 2123 | if isinstance(item, tuple) and self.level is not None: |
| 2124 | idx = tuple(self.array.names).index(self.level) |
| 2125 | item = item[idx] |
| 2126 | return super()._convert_scalar(item) |
| 2127 | |
| 2128 | def _index_get( |
| 2129 | self, indexer: ExplicitIndexer, func_name: str |
nothing calls this directly
no test coverage detected