Skip to content

Commit 9cc85ce

Browse files
committed
squash: pass start/stop explicitly into a.convert()
1 parent 065054f commit 9cc85ce

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
@@ -3451,7 +3451,8 @@ def read_axes(self, where, **kwargs):
34513451
# `kwargs` may contain `start` and `stop` arguments if passed to
34523452
# `store.select()`. If set they determine the index size.
34533453
a.convert(values, nan_rep=self.nan_rep, encoding=self.encoding,
3454-
errors=self.errors, **kwargs)
3454+
errors=self.errors, start=kwargs.get('start'),
3455+
stop=kwargs.get('stop'))
34553456

34563457
return True
34573458

0 commit comments

Comments
 (0)