summaryrefslogtreecommitdiff
path: root/sphinx/io.py
diff options
context:
space:
mode:
authorTakeshi KOMIYA <i.tkomiya@gmail.com>2019-03-19 01:08:42 +0900
committerGitHub <noreply@github.com>2019-03-19 01:08:42 +0900
commitc19fbfb333a21786496e9cde0f5d440c57d30df4 (patch)
treecf41f36b12144b3cf614030dd047f138bf6b5a86 /sphinx/io.py
parent42c8fbd6f30d040683a56277ba59732c028623ab (diff)
parentf210475489fe7f8f9fffbb68f7199bcd271ac0be (diff)
downloadsphinx-git-c19fbfb333a21786496e9cde0f5d440c57d30df4.tar.gz
Merge pull request #6185 from jdufresne/pyupgrade
Python-3-only clean ups discovered by pyupgrade
Diffstat (limited to 'sphinx/io.py')
-rw-r--r--sphinx/io.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/sphinx/io.py b/sphinx/io.py
index f6162b024..b5b57d065 100644
--- a/sphinx/io.py
+++ b/sphinx/io.py
@@ -195,7 +195,7 @@ class SphinxFileInput(FileInput):
def __init__(self, *args, **kwargs):
# type: (Any, Any) -> None
kwargs['error_handler'] = 'sphinx'
- super(SphinxFileInput, self).__init__(*args, **kwargs)
+ super().__init__(*args, **kwargs)
class SphinxRSTFileInput(SphinxBaseFileInput):