We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8d7db98 commit 9b6a5e2Copy full SHA for 9b6a5e2
pandas/io/pytables.py
@@ -2044,6 +2044,8 @@ def convert(
2044
the underlying table's row count are normalized to that.
2045
"""
2046
2047
+ assert self.table is not None
2048
+
2049
_start = start if start is not None else 0
2050
_stop = min(stop, self.table.nrows) if stop is not None else self.table.nrows
2051
self.values = Int64Index(np.arange(_stop - _start))
0 commit comments