We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent de360ef commit 28b1b2cCopy full SHA for 28b1b2c
xarray/backends/pydap_.py
@@ -57,7 +57,7 @@ def _getitem(self, key):
57
if self._batch and hasattr(self.array, "dataset"):
58
# this are both True only for pydap>3.5.5
59
# from pydap.lib import resolve_batch_for_all_variables
60
- from pydap.lib import data_check, get_batch_data
+ from pydap.client import data_check, get_batch_data
61
62
dataset = self.array.dataset
63
get_batch_data(self.array, checksums=self._checksums, key=key)
@@ -239,7 +239,7 @@ def ds(self):
239
240
def _get_data_array(self, var):
241
"""gets dimension data all at once"""
242
- from pydap.lib import get_batch_data
+ from pydap.client import get_batch_data
243
244
if not var._is_data_loaded():
245
# data has not been deserialized yet
0 commit comments