(self, name: str, var: scipy.io.netcdf_variable)
| 282 | return self._manager.acquire() |
| 283 | |
| 284 | def open_store_variable(self, name: str, var: scipy.io.netcdf_variable) -> Variable: |
| 285 | return Variable( |
| 286 | var.dimensions, |
| 287 | indexing.LazilyIndexedArray(ScipyArrayWrapper(name, self)), |
| 288 | _decode_attrs(var._attributes), # type: ignore[attr-defined] # using private attribute |
| 289 | ) |
| 290 | |
| 291 | def get_variables(self) -> Frozen[str, Variable]: |
| 292 | return FrozenDict( |
no test coverage detected