summaryrefslogtreecommitdiff
path: root/sphinx/ext/autodoc/mock.py
diff options
context:
space:
mode:
authorJon Dufresne <jon.dufresne@gmail.com>2019-03-17 12:49:36 -0700
committerJon Dufresne <jon.dufresne@gmail.com>2019-03-17 12:58:03 -0700
commitf210475489fe7f8f9fffbb68f7199bcd271ac0be (patch)
treecf41f36b12144b3cf614030dd047f138bf6b5a86 /sphinx/ext/autodoc/mock.py
parent42c8fbd6f30d040683a56277ba59732c028623ab (diff)
downloadsphinx-git-f210475489fe7f8f9fffbb68f7199bcd271ac0be.tar.gz
Python-3-only clean ups discovered by pyupgrade
https://github.com/asottile/pyupgrade > A tool to automatically upgrade syntax for newer versions of the > language. - Drop u str prefix - Drop base object inheritance - Drop args to super() - Use set literals - Use dict comprehension - Use set comprehension
Diffstat (limited to 'sphinx/ext/autodoc/mock.py')
-rw-r--r--sphinx/ext/autodoc/mock.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/sphinx/ext/autodoc/mock.py b/sphinx/ext/autodoc/mock.py
index b4204ef76..6ae389258 100644
--- a/sphinx/ext/autodoc/mock.py
+++ b/sphinx/ext/autodoc/mock.py
@@ -40,7 +40,7 @@ class _MockObject:
return _make_subclass(args[0], superclass.__display_name__,
superclass=superclass, attributes=args[2])
- return super(_MockObject, cls).__new__(cls)
+ return super().__new__(cls)
def __init__(self, *args, **kwargs):
# type: (Any, Any) -> None