Skip to content

Commit b9c2446

Browse files
committed
fix lints
1 parent ae80099 commit b9c2446

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

pandas/io/html.py

+4-2
Original file line numberDiff line numberDiff line change
@@ -200,7 +200,8 @@ class _HtmlFrameParser(object):
200200
functionality.
201201
"""
202202

203-
def __init__(self, io, match, attrs, encoding, displayed_only, session=None):
203+
def __init__(self, io, match, attrs, encoding, displayed_only,
204+
session=None):
204205
self.io = io
205206
self.match = match
206207
self.attrs = attrs
@@ -890,7 +891,8 @@ def _parse(flavor, io, match, attrs, encoding, displayed_only, **kwargs):
890891
session = kwargs.get('session', None)
891892
for flav in flavor:
892893
parser = _parser_dispatch(flav)
893-
p = parser(io, compiled_match, attrs, encoding, displayed_only, session)
894+
p = parser(io, compiled_match, attrs, encoding, displayed_only,
895+
session)
894896

895897
try:
896898
tables = p.parse_tables()

0 commit comments

Comments
 (0)