Skip to content

Commit 844e580

Browse files
committed
impose sorted to get_dimensions method
1 parent bac007b commit 844e580

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

xarray/backends/pydap_.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -242,7 +242,7 @@ def get_attrs(self):
242242
return Frozen(attrs)
243243

244244
def get_dimensions(self):
245-
return Frozen(self.ds.dimensions)
245+
return Frozen(sorted(self.ds.dimensions))
246246

247247
@property
248248
def ds(self):

0 commit comments

Comments
 (0)