Skip to content

Commit b5ffff4

Browse files
committed
length_curve.py: fix long line
1 parent 826ec53 commit b5ffff4

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

chapter7/solutions/length_curve.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,4 +23,5 @@ def find_length(fx, var, a, b):
2323
print('Invalid function entered')
2424
else:
2525
var = Symbol(var)
26-
print('Length of {0} between {1} and {2} is: {3} '.format(f, l, u, find_length(f, var, l, u)))
26+
print('Length of {0} between {1} and {2} is: {3} '.
27+
format(f, l, u, find_length(f, var, l, u)))

0 commit comments

Comments
 (0)