Skip to content

Commit aa5a885

Browse files
committed
fix: too much characters in line
1 parent 2e67da3 commit aa5a885

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

maths/trapezoidal_rule.py

+4-1
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,10 @@ def make_points(a, b, h):
5252
:yield: The next x-value in the range (a, b)
5353
5454
>>> list(make_points(0, 1, 0.1))
55-
[0.1, 0.2, 0.30000000000000004, 0.4, 0.5, 0.6, 0.7, 0.7999999999999999, 0.8999999999999999]
55+
[0.1, 0.2, 0.30000000000000004, \
56+
0.4, 0.5, 0.6, 0.7, \
57+
0.7999999999999999, \
58+
0.8999999999999999]
5659
"""
5760
x = a + h
5861
while x < (b - h):

0 commit comments

Comments
 (0)