Skip to content

Commit 7bd6f0d

Browse files
committed
squash: address line length errors
1 parent ee9e0ed commit 7bd6f0d

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

pandas/io/pytables.py

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1627,7 +1627,8 @@ def infer(self, handler):
16271627
new_self.read_metadata(handler)
16281628
return new_self
16291629

1630-
def convert(self, values, nan_rep, encoding, errors, start=None, stop=None):
1630+
def convert(self, values, nan_rep, encoding, errors, start=None,
1631+
stop=None):
16311632
""" set the values from this selection: take = take ownership """
16321633

16331634
# values is a recarray
@@ -1816,7 +1817,8 @@ class GenericIndexCol(IndexCol):
18161817
def is_indexed(self):
18171818
return False
18181819

1819-
def convert(self, values, nan_rep, encoding, errors, start=None, stop=None):
1820+
def convert(self, values, nan_rep, encoding, errors, start=None,
1821+
stop=None):
18201822
""" set the values from this selection: take = take ownership
18211823
18221824
Parameters
@@ -2176,7 +2178,8 @@ def validate_attr(self, append):
21762178
raise ValueError("appended items dtype do not match existing "
21772179
"items dtype in table!")
21782180

2179-
def convert(self, values, nan_rep, encoding, errors, start=None, stop=None):
2181+
def convert(self, values, nan_rep, encoding, errors, start=None,
2182+
stop=None):
21802183
"""set the data from this selection (and convert to the correct dtype
21812184
if we can)
21822185
"""

0 commit comments

Comments
 (0)