Skip to content

Commit

Permalink
correctly indent function.
Browse files Browse the repository at this point in the history
  • Loading branch information
tracybporter committed Nov 6, 2018
1 parent 57f709a commit 15c13ed
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions python3/koans/about_iteration.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,8 +65,8 @@ def is_even(item):
self.assertEqual(__, even_numbers)

def test_filter_returns_all_items_matching_criterion(self):
def is_big_name(item):
return len(item) > 4
def is_big_name(item):
return len(item) > 4

names = ["Jim", "Bill", "Clarence", "Doug", "Eli", "Elizabeth"]
iterator = filter(is_big_name, names)
Expand Down

0 comments on commit 15c13ed

Please sign in to comment.