We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent eddd9f0 commit 75815b2Copy full SHA for 75815b2
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