Skip to content

Commit e6d452e

Browse files
committed
Fix CI build
1 parent 1d9ec1e commit e6d452e

File tree

1 file changed

+2
-5
lines changed

1 file changed

+2
-5
lines changed

pandas/io/pytables.py

+2-5
Original file line numberDiff line numberDiff line change
@@ -689,7 +689,7 @@ def get(self, key):
689689
return self._read_group(group)
690690

691691
def select(self, key, where=None, start=None, stop=None, columns=None,
692-
iterator=False, chunksize=None, auto_close=False, **kwargs):
692+
iterator=False, chunksize=None, auto_close=False):
693693
"""
694694
Retrieve pandas object stored in file, optionally based on where
695695
criteria
@@ -707,9 +707,6 @@ def select(self, key, where=None, start=None, stop=None, columns=None,
707707
auto_close : boolean, should automatically close the store when
708708
finished, default is False
709709
710-
kwargs
711-
Additional keyword arguments passed to Storer
712-
713710
Returns
714711
-------
715712
The selected object
@@ -721,7 +718,7 @@ def select(self, key, where=None, start=None, stop=None, columns=None,
721718

722719
# create the storer and axes
723720
where = _ensure_term(where, scope_level=1)
724-
s = self._create_storer(group, **kwargs)
721+
s = self._create_storer(group)
725722
s.infer_axes()
726723

727724
# function to call on iteration

0 commit comments

Comments
 (0)