summaryrefslogtreecommitdiff
path: root/tests/py35/test_autodoc_py35.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/py35/test_autodoc_py35.py')
-rw-r--r--tests/py35/test_autodoc_py35.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/py35/test_autodoc_py35.py b/tests/py35/test_autodoc_py35.py
index 5064970e6..39df5fcf4 100644
--- a/tests/py35/test_autodoc_py35.py
+++ b/tests/py35/test_autodoc_py35.py
@@ -247,7 +247,7 @@ class CustomEx(Exception):
"""Exception method."""
-class CustomDataDescriptor(object):
+class CustomDataDescriptor:
"""Descriptor class docstring."""
def __init__(self, doc):
@@ -275,7 +275,7 @@ def _funky_classmethod(name, b, c, d, docstring=None):
return classmethod(function)
-class Base(object):
+class Base:
def inheritedmeth(self):
"""Inherited function."""