Skip to content

Commit 3eef307

Browse files
committed
pandas-dev issue #36111
1 parent b3a41ed commit 3eef307

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pandas/tests/io/parser/test_parse_dates.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,13 +74,13 @@ def test_read_csv_with_custom_date_parser(self, all_parsers):
7474
delim_whitespace=True,
7575
parse_dates=True,
7676
date_parser=all_parsers,
77-
index_col='time',
77+
index_col="time",
7878
)
7979
expected = pd.DataFrame(
8080
{
8181
"e": [-98573.7297, -98573.7299, -98573.7300, -98573.7299, -98573.7302],
8282
"n": [871458.0640, 871458.0640, 871458.0642, 871458.0643, 871458.0640],
83-
"h": [389.0089, 389.0089, 389.0088, 389.0088, 389.0086]
83+
"h": [389.0089, 389.0089, 389.0088, 389.0088, 389.0086],
8484
},
8585
index=[41047.00, 41048.00, 41049.00, 41050.00, 41051.00],
8686
)

0 commit comments

Comments
 (0)