(self, key: Mapping)
| 308 | # FIXME https://github.com/python/mypy/issues/7328 |
| 309 | @overload # type: ignore[override] |
| 310 | def __getitem__(self, key: Mapping) -> Dataset: # type: ignore[overload-overlap] |
| 311 | ... |
| 312 | |
| 313 | @overload |
| 314 | def __getitem__(self, key: Hashable) -> DataArray: ... |
nothing calls this directly
no test coverage detected