(obj)
| 232 | |
| 233 | |
| 234 | def _index_or_data(obj): |
| 235 | if isinstance(obj.variable, IndexVariable): |
| 236 | return obj.to_index() |
| 237 | else: |
| 238 | return obj.data |
| 239 | |
| 240 | |
| 241 | class TimeAccessor(Generic[T_DataArray]): |
no test coverage detected
searching dependent graphs…