Skip to content

Commit 419af7b

Browse files
committed
lint
1 parent 7f8ca4d commit 419af7b

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

pandas/tests/tslibs/test_parsing.py

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,6 @@
1010
import numpy as np
1111
import pytest
1212

13-
from pandas import option_context
14-
1513
from pandas._libs.tslibs import (
1614
parsing,
1715
strptime,
@@ -27,7 +25,10 @@
2725
# Usually we wouldn't want this import in this test file (which is targeted at
2826
# tslibs.parsing), but it is convenient to test the Timestamp constructor at
2927
# the same time as the other parsing functions.
30-
from pandas import Timestamp
28+
from pandas import (
29+
Timestamp,
30+
option_context,
31+
)
3132
import pandas._testing as tm
3233
from pandas._testing._hypothesis import DATETIME_NO_TZ
3334

@@ -432,7 +433,7 @@ def test_parse_datetime_string_with_reso_dayfirst(dayfirst, input):
432433
except_out_dateutil, result = _helper_hypothesis_delimited_date(
433434
parsing.parse_datetime_string_with_reso, input
434435
)
435-
436+
436437
except_in_dateutil, expected = _helper_hypothesis_delimited_date(
437438
du_parse,
438439
input,

0 commit comments

Comments
 (0)