Skip to content

Commit 6727cf7

Browse files
committed
DOC: fix indent in random.choice doctest
1 parent bf36ad4 commit 6727cf7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

larray/random.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -468,7 +468,7 @@ def choice(choices=None, axes=None, replace=True, p=None, meta=None) -> Array:
468468
Using an N-dimensional array as probabilities:
469469
470470
>>> proba = Array([[0.15, 0.25, 0.10],
471-
... [0.20, 0.10, 0.20]], 'a=a0,a1;b=b0..b2') # doctest: +SKIP
471+
... [0.20, 0.10, 0.20]], 'a=a0,a1;b=b0..b2') # doctest: +SKIP
472472
>>> proba # doctest: +SKIP
473473
a\b b0 b1 b2
474474
a0 0.15 0.25 0.1

0 commit comments

Comments
 (0)