Skip to content
Snippets Groups Projects
Commit 76976222 authored by Ian Galpin's avatar Ian Galpin
Browse files

Convert to Python 3.9+ typing

parent 868b80cc
Branches
Tags
No related merge requests found
...@@ -15,7 +15,6 @@ ...@@ -15,7 +15,6 @@
# sys.path.insert(0, os.path.abspath('.')) # sys.path.insert(0, os.path.abspath('.'))
from importlib import import_module from importlib import import_module
from typing import List
from docutils.parsers.rst import Directive from docutils.parsers.rst import Directive
from docutils import nodes from docutils import nodes
...@@ -82,7 +81,7 @@ templates_path = ['_templates'] ...@@ -82,7 +81,7 @@ templates_path = ['_templates']
# List of patterns, relative to source directory, that match files and # List of patterns, relative to source directory, that match files and
# directories to ignore when looking for source files. # directories to ignore when looking for source files.
# This pattern also affects html_static_path and html_extra_path. # This pattern also affects html_static_path and html_extra_path.
exclude_patterns: List[str] = [] exclude_patterns: list[str] = []
# -- Options for HTML output ------------------------------------------------- # -- Options for HTML output -------------------------------------------------
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment