Skip to content

Commit 6a0cdf2

Browse files
committed
pandas-dev issue #36111
1 parent 82a1c76 commit 6a0cdf2

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
@@ -59,8 +59,8 @@ def test_read_csv_with_custom_date_parser(self):
5959
# GH36111
6060
def __custom_date_parser(time):
6161
time = time.astype(np.float)
62-
time = time.astype(np.int) # convert float seconds to int type
63-
return pd.to_timedelta(time, unit='s')
62+
time = time.astype(np.int) # convert float seconds to int type
63+
return pd.to_timedelta(time, unit="s")
6464
testdata = StringIO(
6565
"""time e n h
6666
41047.00 -98573.7297 871458.0640 389.0089

0 commit comments

Comments
 (0)