From f2e7152c670ce68c1eb93533d4fe65073638e88d Mon Sep 17 00:00:00 2001 From: Spencer Lyon Date: Mon, 28 Jan 2013 23:11:35 -0700 Subject: [PATCH] Moved line to be pep8 compliant --- pandas/io/data.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pandas/io/data.py b/pandas/io/data.py index a59b1f29547b9..3bf177b47b9d6 100644 --- a/pandas/io/data.py +++ b/pandas/io/data.py @@ -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):