Skip to content

Commit 6816442

Browse files
committed
Small formatting on docstrings
1 parent 4ccf458 commit 6816442

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

src/blosc2/ndarray.py

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@
1111
import builtins
1212
import inspect
1313
import math
14-
import warnings
1514
import tempfile
15+
import warnings
1616
from collections import OrderedDict, namedtuple
1717
from functools import reduce
1818
from itertools import product
@@ -3946,9 +3946,6 @@ def permute_dims(arr: NDArray, axes: tuple[int] | list[int] | None = None, **kwa
39463946
[[13, 14, 15, 16],
39473947
[17, 18, 19, 20],
39483948
[21, 22, 23, 24]]])
3949-
3950-
3951-
39523949
>>> at = blosc2.permute_dims(a, axes=(1, 0, 2))
39533950
>>> at[:]
39543951
array([[[ 1, 2, 3, 4],
@@ -3957,7 +3954,6 @@ def permute_dims(arr: NDArray, axes: tuple[int] | list[int] | None = None, **kwa
39573954
[17, 18, 19, 20]],
39583955
[[ 9, 10, 11, 12],
39593956
[21, 22, 23, 24]]])
3960-
39613957
"""
39623958

39633959
if np.isscalar(arr) or arr.ndim < 2:

0 commit comments

Comments
 (0)