(self, key: Hashable)
| 1114 | return set(self._data._coords) |
| 1115 | |
| 1116 | def __getitem__(self, key: Hashable) -> T_DataArray: |
| 1117 | return self._data._getitem_coord(key) |
| 1118 | |
| 1119 | def _update_coords( |
| 1120 | self, coords: dict[Hashable, Variable], indexes: dict[Hashable, Index] |
nothing calls this directly
no test coverage detected