Skip to content

Commit 08be471

Browse files
author
Lars Wiegman
committed
Improved formatting.
1 parent dac4856 commit 08be471

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

python 2/koans/about_iteration.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ def test_all_iteration_methods_work_on_any_sequence_not_just_lists(self):
109109
# Files act like a collection of lines
110110
file = open("example_file.txt")
111111

112-
def make_upcase(line) :
112+
def make_upcase(line):
113113
return line.strip().upper()
114114
upcase_lines = map(make_upcase, file.readlines())
115115
self.assertEqual(__, list(upcase_lines))

0 commit comments

Comments
 (0)