Skip to content

Commit 600e135

Browse files
committed
Added missing space in yield
1 parent 24ff777 commit 600e135

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

Lines changed: 1 addition & 1 deletion
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)