Skip to content

Commit

Permalink
Fix CI build
Browse files Browse the repository at this point in the history
  • Loading branch information
kprestel committed Oct 28, 2018
1 parent 55cb46c commit 6554b2c
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions pandas/io/pytables.py
Original file line number Diff line number Diff line change
Expand Up @@ -3968,15 +3968,14 @@ class AppendableTable(LegacyTable):

def write(self, obj, axes=None, append=False, complib=None,
complevel=None, fletcher32=None, min_itemsize=None,
chunksize=None, expectedrows=None, dropna=False, **kwargs):
chunksize=None, expectedrows=None, dropna=False):

if not append and self.is_exists:
self._handle.remove_node(self.group, 'table')

# create the axes
self.create_axes(axes=axes, obj=obj, validate=append,
min_itemsize=min_itemsize,
**kwargs)
min_itemsize=min_itemsize)

for a in self.axes:
a.validate(self, append)
Expand Down

0 comments on commit 6554b2c

Please sign in to comment.