Skip to content

Commit 5b291d5

Browse files
committed
lint
1 parent 4d343ea commit 5b291d5

File tree

7 files changed

+8
-7
lines changed

7 files changed

+8
-7
lines changed

pandas/tests/arrays/test_integer.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
# -*- coding: utf-8 -*-
22
import numpy as np
3+
import pytest
34

45
from pandas.core.dtypes.generic import ABCIndexClass
56

@@ -11,7 +12,6 @@
1112
UInt32Dtype, UInt64Dtype)
1213
from pandas.tests.extension.base import BaseOpsUtil
1314
import pandas.util.testing as tm
14-
import pytest
1515

1616

1717
def make_data():

pandas/tests/arrays/test_period.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
import numpy as np
2+
import pytest
23

34
from pandas._libs.tslibs import iNaT
45
from pandas._libs.tslibs.period import IncompatibleFrequency
@@ -9,7 +10,6 @@
910
import pandas as pd
1011
from pandas.core.arrays import PeriodArray, period_array
1112
import pandas.util.testing as tm
12-
import pytest
1313

1414
# ----------------------------------------------------------------------------
1515
# Constructors

pandas/tests/extension/decimal/test_decimal.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@
33
import operator
44

55
import numpy as np
6+
import pytest
67

78
import pandas as pd
89
from pandas import compat
910
from pandas.tests.extension import base
1011
import pandas.util.testing as tm
11-
import pytest
1212

1313
from .array import DecimalArray, DecimalDtype, make_data, to_decimal
1414

pandas/tests/extension/json/test_json.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
11
import collections
22
import operator
33

4+
import pytest
5+
46
from pandas.compat import PY2, PY36
57

68
import pandas as pd
79
from pandas.tests.extension import base
810
import pandas.util.testing as tm
9-
import pytest
1011

1112
from .array import JSONArray, JSONDtype, make_data
1213

pandas/tests/extension/test_integer.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414
1515
"""
1616
import numpy as np
17+
import pytest
1718

1819
from pandas.core.dtypes.common import is_extension_array_dtype
1920

@@ -23,7 +24,6 @@
2324
Int8Dtype, Int16Dtype, Int32Dtype, Int64Dtype, UInt8Dtype, UInt16Dtype,
2425
UInt32Dtype, UInt64Dtype)
2526
from pandas.tests.extension import base
26-
import pytest
2727

2828

2929
def make_data():

pandas/tests/extension/test_interval.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,13 @@
1414
1515
"""
1616
import numpy as np
17+
import pytest
1718

1819
from pandas.core.dtypes.dtypes import IntervalDtype
1920

2021
from pandas import Interval
2122
from pandas.core.arrays import IntervalArray
2223
from pandas.tests.extension import base
23-
import pytest
2424

2525

2626
def make_data():

pandas/tests/extension/test_period.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
import numpy as np
2+
import pytest
23

34
from pandas._libs.tslib import iNaT
45

@@ -7,7 +8,6 @@
78
import pandas as pd
89
from pandas.core.arrays import PeriodArray
910
from pandas.tests.extension import base
10-
import pytest
1111

1212

1313
@pytest.fixture

0 commit comments

Comments
 (0)