Skip to content

Commit 34693b2

Browse files
pre-commit-ci[bot]tomvothecoder
authored andcommitted
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent f8f23fe commit 34693b2

File tree

1 file changed

+10
-7
lines changed

1 file changed

+10
-7
lines changed

cf_xarray/helpers.py

Lines changed: 10 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -298,13 +298,16 @@ def _is_bounds_strictly_monotonic(arr: np.ndarray) -> bool:
298298
299299
Examples
300300
--------
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)
301+
>>> bounds = np.array(
302+
... [
303+
... [76.25, 73.75],
304+
... [73.75, 71.25],
305+
... [71.25, 68.75],
306+
... [68.75, 66.25],
307+
... [66.25, 63.75],
308+
... ],
309+
... dtype=np.float32,
310+
... )
308311
>>> _is_bounds_strictly_monotonic(bounds)
309312
True
310313
"""

0 commit comments

Comments
 (0)