Skip to content

Commit a0abec9

Browse files
Update Decorators2NameDirectory.py
Whitespace typo fixed.
1 parent 1d9caf6 commit a0abec9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ClosuresandDecorators/Decorators2NameDirectory.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
import operator
1212
def person_lister(func):
1313
def inner(people):
14-
return [ func(p) for p in sorted(people, key = lambda x: (int(x[2])))]
14+
return [func(p) for p in sorted(people, key = lambda x: (int(x[2])))]
1515
return inner
1616

1717
@person_lister

0 commit comments

Comments
 (0)