diff options
Diffstat (limited to 'sphinx/util/docutils.py')
-rw-r--r-- | sphinx/util/docutils.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sphinx/util/docutils.py b/sphinx/util/docutils.py index d9bc64bf3..165d5862a 100644 --- a/sphinx/util/docutils.py +++ b/sphinx/util/docutils.py @@ -24,10 +24,9 @@ logger = logging.getLogger(__name__) report_re = re.compile('^(.+?:\\d+): \\((DEBUG|INFO|WARNING|ERROR|SEVERE)/(\\d+)?\\) ' '(.+?)\n?$') - if False: # For type annotation - from typing import Any, Callable, Iterator, Tuple # NOQA + from typing import Any, Callable, Iterator, List, Tuple # NOQA from docutils import nodes # NOQA from sphinx.environment import BuildEnvironment # NOQA |