Skip to content

Commit 95d2219

Browse files
author
Matthias Köppe
authored
pycodestyle fix: W293 blank line contains whitespace
1 parent c297d1a commit 95d2219

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/sage/misc/prandom.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -426,7 +426,7 @@ def choices(population, weights=None, *, cum_weights=None, k=1):
426426
def randbytes(n):
427427
r"""
428428
Generate n random bytes
429-
429+
430430
EXAMPLES::
431431
432432
sage: randbytes(10) #random
@@ -441,7 +441,7 @@ def triangular(low=0.0, high=1.0, mode=None):
441441
442442
Continuous distribution bounded by given lower and upper limits,
443443
and having a given mode value in-between.
444-
444+
445445
EXAMPLES::
446446
447447
sage: sample = [triangular(1.0, 5.0, 2.0) for i in range(1, 5)]; sample #random

0 commit comments

Comments
 (0)