Skip to content

Commit e5f534d

Browse files
committed
review feedback
1 parent 43adc03 commit e5f534d

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

xarray/core/options.py

+6-6
Original file line numberDiff line numberDiff line change
@@ -51,8 +51,8 @@ class T_Options(TypedDict):
5151
"enable_cftimeindex": True,
5252
"file_cache_maxsize": 128,
5353
"keep_attrs": "default",
54-
"warn_for_unclosed_files": False,
5554
"use_bottleneck": True,
55+
"warn_for_unclosed_files": False,
5656
}
5757

5858
_JOIN_OPTIONS = frozenset(["inner", "outer", "left", "right", "exact"])
@@ -75,8 +75,8 @@ def _positive_integer(value):
7575
"enable_cftimeindex": lambda value: isinstance(value, bool),
7676
"file_cache_maxsize": _positive_integer,
7777
"keep_attrs": lambda choice: choice in [True, False, "default"],
78-
"warn_for_unclosed_files": lambda value: isinstance(value, bool),
7978
"use_bottleneck": lambda value: isinstance(value, bool),
79+
"warn_for_unclosed_files": lambda value: isinstance(value, bool),
8080
}
8181

8282

@@ -125,14 +125,14 @@ class set_options:
125125
----------
126126
arithmetic_join : {"inner", "outer", "left", "right", "exact"}, default: "inner"
127127
DataArray/Dataset alignment in binary operations.
128-
cmap_sequential : str or matplotlib.colors.Colormap, default: "viridis"
129-
Colormap to use for nondivergent data plots. If string, must be
130-
matplotlib built-in colormap. Can also be a Colormap object
131-
(e.g. mpl.cm.magma)
132128
cmap_divergent : str or matplotlib.colors.Colormap, default: "RdBu_r"
133129
Colormap to use for divergent data plots. If string, must be
134130
matplotlib built-in colormap. Can also be a Colormap object
135131
(e.g. mpl.cm.magma)
132+
cmap_sequential : str or matplotlib.colors.Colormap, default: "viridis"
133+
Colormap to use for nondivergent data plots. If string, must be
134+
matplotlib built-in colormap. Can also be a Colormap object
135+
(e.g. mpl.cm.magma)
136136
display_expand_attrs : {"default", True, False}:
137137
Whether to expand the attributes section for display of
138138
``DataArray`` or ``Dataset`` objects. Can be

0 commit comments

Comments
 (0)