Skip to content

Commit

Permalink
Merge pull request #1 from margiki/fix-error-append-row
Browse files Browse the repository at this point in the history
Fix error append_row
  • Loading branch information
andreimargeloiu authored Mar 29, 2020
2 parents ffaacdd + b01f44e commit d8d6d99
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cox/store.py
Original file line number Diff line number Diff line change
Expand Up @@ -413,7 +413,7 @@ def flush_row(self):
nrows = 0

df.index += nrows
self._HDFStore.append(self._name, df, table=True)
self._HDFStore.append(self._name, df, format='table')

if not self._has_initialized:
self._initialize_nonempty_table()
Expand Down

0 comments on commit d8d6d99

Please sign in to comment.