(k, v)
| 228 | |
| 229 | def get_variables(self): |
| 230 | def lazy_inaccessible(k, v): |
| 231 | if k in self._indexvars: |
| 232 | return v |
| 233 | data = indexing.LazilyIndexedArray(InaccessibleArray(v.values)) |
| 234 | return Variable(v.dims, data, v.attrs) |
| 235 | |
| 236 | return {k: lazy_inaccessible(k, v) for k, v in self._variables.items()} |
| 237 |
nothing calls this directly
no test coverage detected