Skip to content

Commit b4c7dda

Browse files
committed
minor code changes
1 parent f4f253a commit b4c7dda

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

xarray/backends/pydap_.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -206,7 +206,7 @@ def get_attrs(self):
206206
"Maps",
207207
)
208208
attrs = dict(self.ds.attributes)
209-
list(map(attrs.pop, opendap_attrs, [None] * 8))
209+
list(map(attrs.pop, opendap_attrs, [None] * len(opendap_attrs)))
210210
return Frozen(attrs)
211211

212212
def get_dimensions(self):
@@ -346,10 +346,10 @@ def open_datatree(
346346
use_cftime=use_cftime,
347347
decode_timedelta=decode_timedelta,
348348
group=group,
349-
application=None,
349+
application=application,
350350
session=session,
351351
timeout=timeout,
352-
verify=application,
352+
verify=verify,
353353
user_charset=user_charset,
354354
checksums=checksums,
355355
)

0 commit comments

Comments
 (0)