summaryrefslogtreecommitdiff
path: root/sphinx/pycode/pgen2/parse.py
diff options
context:
space:
mode:
authorTakeshi KOMIYA <i.tkomiya@gmail.com>2017-03-03 12:19:09 +0900
committerTakeshi KOMIYA <i.tkomiya@gmail.com>2017-03-03 23:17:34 +0900
commit554199d30e418f72f215fae65924b47249d2544c (patch)
treefd952e21a8f4e9dabf91c5e3731dea3712ade006 /sphinx/pycode/pgen2/parse.py
parent28b1aceefedbb9c3a12d6ba7c712df8ad5e98db8 (diff)
downloadsphinx-git-554199d30e418f72f215fae65924b47249d2544c.tar.gz
Upgrade to mypy-0.5
Diffstat (limited to 'sphinx/pycode/pgen2/parse.py')
-rw-r--r--sphinx/pycode/pgen2/parse.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/sphinx/pycode/pgen2/parse.py b/sphinx/pycode/pgen2/parse.py
index 43b88b519..660a47e68 100644
--- a/sphinx/pycode/pgen2/parse.py
+++ b/sphinx/pycode/pgen2/parse.py
@@ -15,7 +15,7 @@ from sphinx.pycode.pgen2 import token
if False:
# For type annotation
- from typing import Any, Tuple # NOQA
+ from typing import Any, List, Set, Tuple # NOQA
class ParseError(Exception):
"""Exception to signal the parser is stuck."""