Skip to content

Commit 1016a8d

Browse files
committed
CLN: add test.indexes.common.Base.create_index
1 parent 787dc8a commit 1016a8d

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

pandas/tests/indexes/common.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,9 @@ class Base:
3535
_holder: Optional[Type[Index]] = None
3636
_compat_props = ["shape", "ndim", "size", "nbytes"]
3737

38+
def create_index(self) -> Index:
39+
raise NotImplementedError("Method not implemented")
40+
3841
def test_pickle_compat_construction(self):
3942
# need an object to create with
4043
msg = (

0 commit comments

Comments
 (0)