Skip to content

Commit 89f7787

Browse files
authored
Merge pull request #670 from shadchin/patch-1
2 parents 6162853 + f5cb4ca commit 89f7787

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

pyresample/bilinear/xarr.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -210,7 +210,7 @@ def save_resampling_info(self, filename):
210210
def load_resampling_info(self, filename):
211211
"""Load bilinear resampling look-up tables and initialize the resampler."""
212212
try:
213-
fid = zarr.open(filename, 'r')
213+
fid = zarr.open(filename, mode='r')
214214
for val in BIL_COORDINATES:
215215
cache = da.array(fid[val])
216216
setattr(self, val, cache)

0 commit comments

Comments
 (0)