Skip to content

Commit 065054f

Browse files
committed
squash: do not use line cont backslash
1 parent aa83473 commit 065054f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pandas/io/pytables.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1829,8 +1829,8 @@ def convert(self, values, nan_rep, encoding, errors, start=None,
18291829
"""
18301830

18311831
start = start if start is not None else 0
1832-
stop = min(stop, self.table.nrows) \
1833-
if stop is not None else self.table.nrows
1832+
stop = (min(stop, self.table.nrows)
1833+
if stop is not None else self.table.nrows)
18341834
self.values = Int64Index(np.arange(stop - start))
18351835

18361836
return self

0 commit comments

Comments
 (0)