Skip to content

Commit 6e46b78

Browse files
authored
Merge pull request dabeaz#5 from kracekumar/patch-1
Added missing space in yield
2 parents 2bc135f + 600e135 commit 6e46b78

File tree

1 file changed

+1
-1
lines changed
  • src/4/creating_data_processing_pipelines

1 file changed

+1
-1
lines changed

src/4/creating_data_processing_pipelines/example.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ def gen_find(filepat, top):
1010
'''
1111
for path, dirlist, filelist in os.walk(top):
1212
for name in fnmatch.filter(filelist, filepat):
13-
yield os.path.join(path,name)
13+
yield os.path.join(path, name)
1414

1515
def gen_opener(filenames):
1616
'''

0 commit comments

Comments
 (0)