We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d3a9a92 commit bed670dCopy full SHA for bed670d
docs/conf.py
@@ -1,6 +1,7 @@
1
# flake8: NOQA E5
2
import inspect
3
import sys
4
+import typing as t
5
from os.path import dirname, relpath
6
from pathlib import Path
7
@@ -14,7 +15,7 @@
14
15
sys.path.insert(0, str(cwd / "_ext"))
16
17
# package data
-about = {}
18
+about: t.Dict[str, str] = {}
19
with open(project_root / "tmuxp" / "__about__.py") as fp:
20
exec(fp.read(), about)
21
@@ -61,8 +62,8 @@
61
62
html_static_path = ["_static"]
63
html_favicon = "_static/favicon.ico"
64
html_theme = "furo"
-html_theme_path = []
65
-html_theme_options = {
+html_theme_path: t.List[str] = []
66
+html_theme_options: t.Dict[str, t.Union[str, t.List[t.Dict[str, str]]]] = {
67
"light_logo": "img/tmuxp.svg",
68
"dark_logo": "img/tmuxp.svg",
69
"footer_icons": [
0 commit comments