Skip to content

Commit 434d673

Browse files
committed
Removed unnecessary line continuation
1 parent 30210f6 commit 434d673

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

python3/koans/about_string_manipulation.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ def test_any_python_expression_may_be_interpolated(self):
2121
import math # import a standard python module with math functions
2222

2323
decimal_places = 4
24-
string = "The square root of 5 is {0:.{1}f}".format(math.sqrt(5), \
24+
string = "The square root of 5 is {0:.{1}f}".format(math.sqrt(5),
2525
decimal_places)
2626
self.assertEqual(__, string)
2727

0 commit comments

Comments
 (0)