summaryrefslogtreecommitdiff
path: root/sphinx/util/pycompat.py
diff options
context:
space:
mode:
authorTakeshi KOMIYA <i.tkomiya@gmail.com>2020-06-03 23:25:17 +0900
committerTakeshi KOMIYA <i.tkomiya@gmail.com>2020-06-03 23:31:43 +0900
commitb8fbd3d9c64b8bf12d2cdc091798faad7513e820 (patch)
tree0c0ddfd27e4dbe86ad73994523e941ffee5c03e8 /sphinx/util/pycompat.py
parente3f9bf43f617b17937df255519337ebda897f46b (diff)
downloadsphinx-git-b8fbd3d9c64b8bf12d2cdc091798faad7513e820.tar.gz
Fix mypy violations (with mypy-0.780)
Diffstat (limited to 'sphinx/util/pycompat.py')
-rw-r--r--sphinx/util/pycompat.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/sphinx/util/pycompat.py b/sphinx/util/pycompat.py
index 061bbcb6d..c7afdabb7 100644
--- a/sphinx/util/pycompat.py
+++ b/sphinx/util/pycompat.py
@@ -83,7 +83,7 @@ def execfile_(filepath: str, _globals: Any, open: Callable = open) -> None:
deprecated_alias('sphinx.util.pycompat',
{
- 'NoneType': NoneType, # type: ignore
+ 'NoneType': NoneType,
'TextIOWrapper': io.TextIOWrapper,
'htmlescape': html.escape,
'indent': textwrap.indent,