Skip to content

Commit a8d4592

Browse files
committed
squash: pass start/stop explicitly into a.convert()
1 parent 3c22d90 commit a8d4592

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

pandas/io/pytables.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3454,7 +3454,8 @@ def read_axes(self, where, **kwargs):
34543454
# `kwargs` may contain `start` and `stop` arguments if passed to
34553455
# `store.select()`. If set they determine the index size.
34563456
a.convert(values, nan_rep=self.nan_rep, encoding=self.encoding,
3457-
errors=self.errors, **kwargs)
3457+
errors=self.errors, start=kwargs.get('start'),
3458+
stop=kwargs.get('stop'))
34583459

34593460
return True
34603461

0 commit comments

Comments
 (0)