MCPcopy
hub / github.com/pydata/xarray / __dask_keys__

Method __dask_keys__

xarray/namedarray/core.py:604–608  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

602 return None
603
604 def __dask_keys__(self) -> NestedKeys:
605 if is_duck_dask_array(self._data):
606 return self._data.__dask_keys__()
607 else:
608 raise AttributeError("Method requires self.data to be a dask array.")
609
610 def __dask_layers__(self) -> Sequence[str]:
611 if is_duck_dask_array(self._data):

Callers

nothing calls this directly

Calls 1

is_duck_dask_arrayFunction · 0.90

Tested by

no test coverage detected