|
14 | 14 |
|
15 | 15 | import os |
16 | 16 | import shutil |
17 | | -from typing import Any |
| 17 | +from typing import Dict, Any, List |
18 | 18 |
|
19 | 19 | # If extensions (or modules to document with autodoc) are in another directory, |
20 | 20 | # add these directories to sys.path here. If the directory is relative to the |
|
62 | 62 | # built documents. |
63 | 63 | # |
64 | 64 |
|
65 | | -version_ns: dict[str, Any] = {} |
| 65 | +version_ns: Dict[str, Any] = {} |
66 | 66 | here = os.path.dirname(__file__) |
67 | 67 | version_py = os.path.join(here, os.pardir, "ipykernel", "_version.py") |
68 | 68 | with open(version_py) as f: |
|
151 | 151 | # Add any paths that contain custom static files (such as style sheets) here, |
152 | 152 | # relative to this directory. They are copied after the builtin static files, |
153 | 153 | # so a file named "default.css" will overwrite the builtin "default.css". |
154 | | -html_static_path: list[str] = [] |
| 154 | +html_static_path: List[str] = [] |
155 | 155 |
|
156 | 156 | # Add any extra paths that contain custom files (such as robots.txt or |
157 | 157 | # .htaccess) here, relative to this directory. These files are copied |
|
218 | 218 |
|
219 | 219 | # -- Options for LaTeX output --------------------------------------------- |
220 | 220 |
|
221 | | -latex_elements: dict[str, object] = {} |
| 221 | +latex_elements: Dict[str, object] = {} |
222 | 222 |
|
223 | 223 | # Grouping the document tree into LaTeX files. List of tuples |
224 | 224 | # (source start file, target name, title, |
|
0 commit comments