@@ -27,8 +27,8 @@ class T_Options(TypedDict):
27
27
enable_cftimeindex : bool
28
28
file_cache_maxsize : int
29
29
keep_attrs : Literal ["default" , True , False ]
30
- warn_for_unclosed_files : bool
31
30
use_bottleneck : bool
31
+ warn_for_unclosed_files : bool
32
32
33
33
34
34
else :
@@ -60,8 +60,8 @@ class T_Options(TypedDict):
60
60
enable_cftimeindex : bool
61
61
file_cache_maxsize : int
62
62
keep_attrs : Literal ["default" , True , False ]
63
- warn_for_unclosed_files : bool
64
63
use_bottleneck : bool
64
+ warn_for_unclosed_files : bool
65
65
66
66
except ImportError :
67
67
from typing import TYPE_CHECKING , Any , Dict , Hashable
@@ -86,8 +86,8 @@ class T_Options(TypedDict):
86
86
"enable_cftimeindex" : True ,
87
87
"file_cache_maxsize" : 128 ,
88
88
"keep_attrs" : "default" ,
89
- "warn_for_unclosed_files" : False ,
90
89
"use_bottleneck" : True ,
90
+ "warn_for_unclosed_files" : False ,
91
91
}
92
92
93
93
_JOIN_OPTIONS = frozenset (["inner" , "outer" , "left" , "right" , "exact" ])
@@ -110,8 +110,8 @@ def _positive_integer(value):
110
110
"enable_cftimeindex" : lambda value : isinstance (value , bool ),
111
111
"file_cache_maxsize" : _positive_integer ,
112
112
"keep_attrs" : lambda choice : choice in [True , False , "default" ],
113
- "warn_for_unclosed_files" : lambda value : isinstance (value , bool ),
114
113
"use_bottleneck" : lambda value : isinstance (value , bool ),
114
+ "warn_for_unclosed_files" : lambda value : isinstance (value , bool ),
115
115
}
116
116
117
117
@@ -160,14 +160,14 @@ class set_options:
160
160
----------
161
161
arithmetic_join : {"inner", "outer", "left", "right", "exact"}, default: "inner"
162
162
DataArray/Dataset alignment in binary operations.
163
- cmap_sequential : str or matplotlib.colors.Colormap, default: "viridis"
164
- Colormap to use for nondivergent data plots. If string, must be
165
- matplotlib built-in colormap. Can also be a Colormap object
166
- (e.g. mpl.cm.magma)
167
163
cmap_divergent : str or matplotlib.colors.Colormap, default: "RdBu_r"
168
164
Colormap to use for divergent data plots. If string, must be
169
165
matplotlib built-in colormap. Can also be a Colormap object
170
166
(e.g. mpl.cm.magma)
167
+ cmap_sequential : str or matplotlib.colors.Colormap, default: "viridis"
168
+ Colormap to use for nondivergent data plots. If string, must be
169
+ matplotlib built-in colormap. Can also be a Colormap object
170
+ (e.g. mpl.cm.magma)
171
171
display_expand_attrs : {"default", True, False}:
172
172
Whether to expand the attributes section for display of
173
173
``DataArray`` or ``Dataset`` objects. Can be
0 commit comments