diff options
author | Takeshi KOMIYA <i.tkomiya@gmail.com> | 2018-12-17 21:31:55 +0900 |
---|---|---|
committer | Takeshi KOMIYA <i.tkomiya@gmail.com> | 2018-12-17 21:31:55 +0900 |
commit | ef4fa3682bc54ca3f389c6c9c856e1be5fc006ce (patch) | |
tree | 301a3b5ebeafb5a725454a4f7ec1a93556a4256c | |
parent | 1ef7b1a0804c28caff2c28badc45e7d97337bb69 (diff) | |
download | sphinx-git-ef4fa3682bc54ca3f389c6c9c856e1be5fc006ce.tar.gz |
Add comment for Inventory type
-rw-r--r-- | sphinx/util/typing.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sphinx/util/typing.py b/sphinx/util/typing.py index 08423b8c8..cf6c49daf 100644 --- a/sphinx/util/typing.py +++ b/sphinx/util/typing.py @@ -28,4 +28,5 @@ RoleFunction = Callable[[text_type, text_type, text_type, int, Inliner, Dict, Li # title getter functions for enumerable nodes (see sphinx.domains.std) TitleGetter = Callable[[nodes.Node], text_type] +# inventory data on memory Inventory = Dict[str, Dict[str, Tuple[str, str, str, str]]] |