Skip to content

Commit 39ceeb7

Browse files
author
MarcoGorelli
committed
add missing noqa:F401
1 parent 2cc7b2c commit 39ceeb7

File tree

3 files changed

+10
-10
lines changed

3 files changed

+10
-10
lines changed

pandas/tests/extension/base/__init__.py

+6-6
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ class TestMyDtype(BaseDtypeTests):
4545
from pandas.tests.extension.base.casting import BaseCastingTests # noqa
4646
from pandas.tests.extension.base.constructors import BaseConstructorsTests # noqa
4747
from pandas.tests.extension.base.dim2 import Dim2CompatTests # noqa
48-
from pandas.tests.extension.base.dim2 import NDArrayBacked2DTests
48+
from pandas.tests.extension.base.dim2 import NDArrayBacked2DTests # noqa
4949
from pandas.tests.extension.base.dtype import BaseDtypeTests # noqa
5050
from pandas.tests.extension.base.getitem import BaseGetitemTests # noqa
5151
from pandas.tests.extension.base.groupby import BaseGroupbyTests # noqa
@@ -55,12 +55,12 @@ class TestMyDtype(BaseDtypeTests):
5555
from pandas.tests.extension.base.methods import BaseMethodsTests # noqa
5656
from pandas.tests.extension.base.missing import BaseMissingTests # noqa
5757
from pandas.tests.extension.base.ops import BaseArithmeticOpsTests # noqa
58-
from pandas.tests.extension.base.ops import BaseComparisonOpsTests
59-
from pandas.tests.extension.base.ops import BaseOpsUtil
60-
from pandas.tests.extension.base.ops import BaseUnaryOpsTests
58+
from pandas.tests.extension.base.ops import BaseComparisonOpsTests # noqa
59+
from pandas.tests.extension.base.ops import BaseOpsUtil # noqa
60+
from pandas.tests.extension.base.ops import BaseUnaryOpsTests # noqa
6161
from pandas.tests.extension.base.printing import BasePrintingTests # noqa
6262
from pandas.tests.extension.base.reduce import BaseBooleanReduceTests # noqa
63-
from pandas.tests.extension.base.reduce import BaseNoReduceTests
64-
from pandas.tests.extension.base.reduce import BaseNumericReduceTests
63+
from pandas.tests.extension.base.reduce import BaseNoReduceTests # noqa
64+
from pandas.tests.extension.base.reduce import BaseNumericReduceTests # noqa
6565
from pandas.tests.extension.base.reshaping import BaseReshapingTests # noqa
6666
from pandas.tests.extension.base.setitem import BaseSetitemTests # noqa

pandas/tests/indexes/common.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
from pandas.core.api import Float64Index # noqa:F401
2828
from pandas.core.api import Int64Index
2929
from pandas.core.api import NumericIndex
30-
from pandas.core.api import UInt64Index
30+
from pandas.core.api import UInt64Index # noqa: F401
3131
from pandas.core.arrays import BaseMaskedArray
3232

3333

pandas/util/__init__.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# pyright: reportUnusedImport = false
22
from pandas.util._decorators import Appender # noqa:F401
3-
from pandas.util._decorators import Substitution
4-
from pandas.util._decorators import cache_readonly
3+
from pandas.util._decorators import Substitution # noqa: F401
4+
from pandas.util._decorators import cache_readonly # noqa: F401
55

66
from pandas.core.util.hashing import hash_array # noqa:F401
7-
from pandas.core.util.hashing import hash_pandas_object
7+
from pandas.core.util.hashing import hash_pandas_object # noqa: F401

0 commit comments

Comments
 (0)