Skip to content

Commit dec6da3

Browse files
committed
CLN: pep8 error
1 parent d87fccf commit dec6da3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pandas/io/parsers.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -1680,8 +1680,8 @@ def __init__(self, src, **kwds):
16801680

16811681
ParserBase.__init__(self, kwds)
16821682

1683-
if (kwds.get('compression') is None
1684-
and 'utf-16' in (kwds.get('encoding') or '')):
1683+
if (kwds.get('compression') is None and
1684+
'utf-16' in (kwds.get('encoding') or '')):
16851685
# if source is utf-16 plain text, convert source to utf-8
16861686
if isinstance(src, compat.string_types):
16871687
src = open(src, 'rb')

0 commit comments

Comments
 (0)