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 6554b2c commit 264aa37
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions pandas/io/pytables.py
Original file line number Diff line number Diff line change
Expand Up @@ -689,7 +689,7 @@ def get(self, key):
return self._read_group(group)

def select(self, key, where=None, start=None, stop=None, columns=None,
iterator=False, chunksize=None, auto_close=False, **kwargs):
iterator=False, chunksize=None, auto_close=False):
"""
Retrieve pandas object stored in file, optionally based on where
criteria
Expand All @@ -707,9 +707,6 @@ def select(self, key, where=None, start=None, stop=None, columns=None,
auto_close : boolean, should automatically close the store when
finished, default is False
kwargs
Additional keyword arguments passed to Storer
Returns
-------
The selected object
Expand All @@ -721,7 +718,7 @@ def select(self, key, where=None, start=None, stop=None, columns=None,

# create the storer and axes
where = _ensure_term(where, scope_level=1)
s = self._create_storer(group, **kwargs)
s = self._create_storer(group)
s.infer_axes()

# function to call on iteration
Expand Down

0 comments on commit 264aa37

Please sign in to comment.