We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f8f23fe commit 34693b2Copy full SHA for 34693b2
cf_xarray/helpers.py
@@ -298,13 +298,16 @@ def _is_bounds_strictly_monotonic(arr: np.ndarray) -> bool:
298
299
Examples
300
--------
301
- >>> bounds = np.array([
302
- ... [76.25, 73.75],
303
- ... [73.75, 71.25],
304
- ... [71.25, 68.75],
305
- ... [68.75, 66.25],
306
- ... [66.25, 63.75]
307
- ... ], dtype=np.float32)
+ >>> bounds = np.array(
+ ... [
+ ... [76.25, 73.75],
+ ... [73.75, 71.25],
+ ... [71.25, 68.75],
+ ... [68.75, 66.25],
+ ... [66.25, 63.75],
308
+ ... ],
309
+ ... dtype=np.float32,
310
+ ... )
311
>>> _is_bounds_strictly_monotonic(bounds)
312
True
313
"""
0 commit comments