Skip to content

Commit 19a9f28

Browse files
committed
docs(conf.py): Typings
1 parent 92acea6 commit 19a9f28

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

docs/conf.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
import sys
55
from os.path import dirname, relpath
66
from pathlib import Path
7+
from typing import Dict, List
78

89
import libtmux # NOQA
910
from libtmux import test # NOQA
@@ -16,7 +17,7 @@
1617
sys.path.insert(0, str(cwd / "_ext"))
1718

1819
# package data
19-
about = {}
20+
about: Dict = {}
2021
with open("../libtmux/__about__.py") as fp:
2122
exec(fp.read(), about)
2223

@@ -68,8 +69,8 @@
6869
html_css_files = ["css/custom.css"]
6970
html_extra_path = ["manifest.json"]
7071
html_theme = "furo"
71-
html_theme_path = []
72-
html_theme_options = {
72+
html_theme_path: List = []
73+
html_theme_options: Dict = {
7374
"light_logo": "img/libtmux.svg",
7475
"dark_logo": "img/libtmux.svg",
7576
"footer_icons": [

0 commit comments

Comments
 (0)