Skip to content

Commit 1d96c98

Browse files
committed
remove inheritance from 'object'
1 parent ad4b083 commit 1d96c98

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

doc/source/whatsnew/v0.25.0.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ The repr now looks like this:
9292
9393
Previously, outputting a :class:`MultiIndex` printed all the ``levels`` and
9494
``codes`` of the ``MultiIndex``, which was visually unappealing and made
95-
the output more difficult to navigate:
95+
the output more difficult to navigate. For example (limiting the range to 5):
9696

9797
.. code-block:: ipython
9898

pandas/tests/indexes/multi/test_format.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ def test_repr_max_seq_item_setting(idx):
7676
assert '...' not in str(idx)
7777

7878

79-
class TestRepr(object):
79+
class TestRepr:
8080

8181
def test_repr(self, idx):
8282
result = idx[:1].__repr__()

0 commit comments

Comments
 (0)