You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
files = filepath.glob("*")
assert any(files)
for file in files:
...
Of course the any call eats the first element from the generator. Check this pattern in datashuttle, in general convert to list of the bat we are rarely going to deal with so many files a generator is useful and it is very easy to make mistakes when refactoring such code.
The text was updated successfully, but these errors were encountered:
Today I made the error:
Of course the
any
call eats the first element from the generator. Check this pattern indatashuttle
, in general convert to list of the bat we are rarely going to deal with so many files a generator is useful and it is very easy to make mistakes when refactoring such code.The text was updated successfully, but these errors were encountered: