Skip to content

Commit f034e02

Browse files
committed
fix lints
1 parent f4ca5de commit f034e02

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
@@ -792,7 +793,8 @@ def _parse(flavor, io, match, attrs, encoding, displayed_only, **kwargs):
792793
session = kwargs.get('session', None)
793794
for flav in flavor:
794795
parser = _parser_dispatch(flav)
795-
p = parser(io, compiled_match, attrs, encoding, displayed_only, session)
796+
p = parser(io, compiled_match, attrs, encoding, displayed_only,
797+
session)
796798

797799
try:
798800
tables = p.parse_tables()

0 commit comments

Comments
 (0)