Skip to content

Commit

Permalink
Merge pull request #5 from kracekumar/patch-1
Browse files Browse the repository at this point in the history
Added missing space in yield
  • Loading branch information
dabeaz authored Nov 6, 2017
2 parents 2bc135f + 600e135 commit 6e46b78
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/4/creating_data_processing_pipelines/example.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ def gen_find(filepat, top):
'''
for path, dirlist, filelist in os.walk(top):
for name in fnmatch.filter(filelist, filepat):
yield os.path.join(path,name)
yield os.path.join(path, name)

def gen_opener(filenames):
'''
Expand Down

0 comments on commit 6e46b78

Please sign in to comment.