@@ -51,8 +51,8 @@ class T_Options(TypedDict):
51
51
"enable_cftimeindex" : True ,
52
52
"file_cache_maxsize" : 128 ,
53
53
"keep_attrs" : "default" ,
54
- "warn_for_unclosed_files" : False ,
55
54
"use_bottleneck" : True ,
55
+ "warn_for_unclosed_files" : False ,
56
56
}
57
57
58
58
_JOIN_OPTIONS = frozenset (["inner" , "outer" , "left" , "right" , "exact" ])
@@ -75,8 +75,8 @@ def _positive_integer(value):
75
75
"enable_cftimeindex" : lambda value : isinstance (value , bool ),
76
76
"file_cache_maxsize" : _positive_integer ,
77
77
"keep_attrs" : lambda choice : choice in [True , False , "default" ],
78
- "warn_for_unclosed_files" : lambda value : isinstance (value , bool ),
79
78
"use_bottleneck" : lambda value : isinstance (value , bool ),
79
+ "warn_for_unclosed_files" : lambda value : isinstance (value , bool ),
80
80
}
81
81
82
82
@@ -125,14 +125,14 @@ class set_options:
125
125
----------
126
126
arithmetic_join : {"inner", "outer", "left", "right", "exact"}, default: "inner"
127
127
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)
132
128
cmap_divergent : str or matplotlib.colors.Colormap, default: "RdBu_r"
133
129
Colormap to use for divergent data plots. If string, must be
134
130
matplotlib built-in colormap. Can also be a Colormap object
135
131
(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)
136
136
display_expand_attrs : {"default", True, False}:
137
137
Whether to expand the attributes section for display of
138
138
``DataArray`` or ``Dataset`` objects. Can be
0 commit comments