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 92acea6 commit 19a9f28Copy full SHA for 19a9f28
docs/conf.py
@@ -4,6 +4,7 @@
4
import sys
5
from os.path import dirname, relpath
6
from pathlib import Path
7
+from typing import Dict, List
8
9
import libtmux # NOQA
10
from libtmux import test # NOQA
@@ -16,7 +17,7 @@
16
17
sys.path.insert(0, str(cwd / "_ext"))
18
19
# package data
-about = {}
20
+about: Dict = {}
21
with open("../libtmux/__about__.py") as fp:
22
exec(fp.read(), about)
23
@@ -68,8 +69,8 @@
68
69
html_css_files = ["css/custom.css"]
70
html_extra_path = ["manifest.json"]
71
html_theme = "furo"
-html_theme_path = []
72
-html_theme_options = {
+html_theme_path: List = []
73
+html_theme_options: Dict = {
74
"light_logo": "img/libtmux.svg",
75
"dark_logo": "img/libtmux.svg",
76
"footer_icons": [
0 commit comments