Skip to content

Commit 7b7a9d4

Browse files
committed
Fix a typo on a docstring in mission 27
1 parent cdd2fef commit 7b7a9d4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

27-speedboat.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ def filter_different_pixels(pil_pixels, wand_pixels):
3737

3838

3939
def extract_solution(data):
40-
"""Decompress data and yields words that aren't “Pythonic”"""
40+
"""Decompresses data and yields words that aren't “Pythonic”"""
4141
for word in sorted(set(bz2.decompress(bytes(data)).decode().split())):
4242
if not keyword.iskeyword(word) and not hasattr(__builtins__, word):
4343
yield word

0 commit comments

Comments
 (0)