Skip to content

Commit

Permalink
remove inheritance from 'object'
Browse files Browse the repository at this point in the history
  • Loading branch information
topper-123 committed Jun 11, 2019
1 parent ad4b083 commit 1d96c98
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion doc/source/whatsnew/v0.25.0.rst
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ The repr now looks like this:
Previously, outputting a :class:`MultiIndex` printed all the ``levels`` and
``codes`` of the ``MultiIndex``, which was visually unappealing and made
the output more difficult to navigate:
the output more difficult to navigate. For example (limiting the range to 5):

.. code-block:: ipython
Expand Down
2 changes: 1 addition & 1 deletion pandas/tests/indexes/multi/test_format.py
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ def test_repr_max_seq_item_setting(idx):
assert '...' not in str(idx)


class TestRepr(object):
class TestRepr:

def test_repr(self, idx):
result = idx[:1].__repr__()
Expand Down

0 comments on commit 1d96c98

Please sign in to comment.