Skip to content

Commit b23ac1c

Browse files
committed
fix lints
1 parent 999bf24 commit b23ac1c

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
@@ -201,7 +201,8 @@ class _HtmlFrameParser(object):
201201
functionality.
202202
"""
203203

204-
def __init__(self, io, match, attrs, encoding, displayed_only, session=None):
204+
def __init__(self, io, match, attrs, encoding, displayed_only,
205+
session=None):
205206
self.io = io
206207
self.match = match
207208
self.attrs = attrs
@@ -892,7 +893,8 @@ def _parse(flavor, io, match, attrs, encoding, displayed_only, **kwargs):
892893
session = kwargs.get('session', None)
893894
for flav in flavor:
894895
parser = _parser_dispatch(flav)
895-
p = parser(io, compiled_match, attrs, encoding, displayed_only, session)
896+
p = parser(io, compiled_match, attrs, encoding, displayed_only,
897+
session)
896898

897899
try:
898900
tables = p.parse_tables()

0 commit comments

Comments
 (0)