Skip to content

Commit d748d21

Browse files
linting
1 parent 824552f commit d748d21

File tree

3 files changed

+2
-5
lines changed

3 files changed

+2
-5
lines changed

pandas/_libs/interval.pyx

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,6 @@ from pandas._libs.tslibs.util cimport (
4141
is_integer_object,
4242
)
4343

44-
from pandas.util._decorators import set_module
45-
4644
VALID_CLOSED = frozenset(["left", "right", "both", "neither"])
4745

4846

pandas/core/indexes/base.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -315,6 +315,7 @@ def _new_Index(cls, d):
315315
d["dtype"] = d["data"].dtype
316316
return cls.__new__(cls, **d)
317317

318+
318319
@set_module("pandas")
319320
class Index(IndexOpsMixin, PandasObject):
320321
"""

pandas/core/indexes/extension.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,7 @@
1010
TypeVar,
1111
)
1212

13-
from pandas.util._decorators import (
14-
cache_readonly,
15-
)
13+
from pandas.util._decorators import cache_readonly
1614

1715
from pandas.core.dtypes.generic import ABCDataFrame
1816

0 commit comments

Comments
 (0)