Skip to content

Commit ea81c5e

Browse files
committed
fix types
1 parent 8f0f492 commit ea81c5e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cf_xarray/accessor.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -609,7 +609,7 @@ def _create_grid_mapping(
609609

610610
x = apply_mapper(_get_with_standard_name, ds, xname, error=False, default=[[]])
611611
y = apply_mapper(_get_with_standard_name, ds, yname, error=False, default=[[]])
612-
coordinates = tuple(itertools.chain(x, y))
612+
coordinates = list(itertools.chain(x, y))
613613

614614
return GridMapping(name=cf_name, crs=crs, array=da, coordinates=tuple(coordinates))
615615

0 commit comments

Comments
 (0)