Skip to content

Commit f2e7152

Browse files
committed
Moved line to be pep8 compliant
1 parent 1fc5301 commit f2e7152

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

pandas/io/data.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -231,7 +231,8 @@ def _parse_options_data(table):
231231
header = _unpack(rows[0], kind='th')
232232
data = [_unpack(r) for r in rows[1:]]
233233
# Use ',' as a thousands separator as we're pulling from the US site.
234-
return TextParser(data, names=header, na_values=['N/A'], thousands=',').get_chunk()
234+
return TextParser(data, names=header, na_values=['N/A'],
235+
thousands=',').get_chunk()
235236

236237

237238
class Options(object):

0 commit comments

Comments
 (0)