Skip to content

Commit

Permalink
Moved line to be pep8 compliant
Browse files Browse the repository at this point in the history
  • Loading branch information
sglyon committed Jan 29, 2013
1 parent 1fc5301 commit f2e7152
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion pandas/io/data.py
Original file line number Diff line number Diff line change
Expand Up @@ -231,7 +231,8 @@ def _parse_options_data(table):
header = _unpack(rows[0], kind='th')
data = [_unpack(r) for r in rows[1:]]
# Use ',' as a thousands separator as we're pulling from the US site.
return TextParser(data, names=header, na_values=['N/A'], thousands=',').get_chunk()
return TextParser(data, names=header, na_values=['N/A'],
thousands=',').get_chunk()


class Options(object):
Expand Down

0 comments on commit f2e7152

Please sign in to comment.