diff options
author | Takeshi KOMIYA <i.tkomiya@gmail.com> | 2017-12-15 22:17:03 +0900 |
---|---|---|
committer | Takeshi KOMIYA <i.tkomiya@gmail.com> | 2017-12-15 22:17:03 +0900 |
commit | fe07365a8cea7186261930f19b7f15735e545c57 (patch) | |
tree | d8272475b119dc2cabd19f5178bb244cbac8319a /sphinx/io.py | |
parent | b2837eee0ccd6020c3c1d6470381f6a07185ca0e (diff) | |
download | sphinx-git-fe07365a8cea7186261930f19b7f15735e545c57.tar.gz |
Fix mypy violations
Diffstat (limited to 'sphinx/io.py')
-rw-r--r-- | sphinx/io.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sphinx/io.py b/sphinx/io.py index 4bb554742..804932863 100644 --- a/sphinx/io.py +++ b/sphinx/io.py @@ -86,7 +86,7 @@ class SphinxStandaloneReader(SphinxBaseReader): def __init__(self, app, *args, **kwargs): # type: (Sphinx, Any, Any) -> None self.transforms = self.transforms + app.registry.get_transforms() - SphinxBaseReader.__init__(self, *args, **kwargs) + SphinxBaseReader.__init__(self, *args, **kwargs) # type: ignore class SphinxI18nReader(SphinxBaseReader): |