Skip to content

Commit

Permalink
Fix bug for chunk 0
Browse files Browse the repository at this point in the history
  • Loading branch information
kboone committed May 17, 2019
1 parent ce913fa commit 72ab54f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion avocado/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -257,7 +257,7 @@ def write_dataframe(path, dataframe, key, overwrite=False, append=None,
import time

if append is None:
if chunk:
if chunk is not None:
append = True
else:
append = False
Expand Down

0 comments on commit 72ab54f

Please sign in to comment.