From ef4fa3682bc54ca3f389c6c9c856e1be5fc006ce Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA Date: Mon, 17 Dec 2018 21:31:55 +0900 Subject: [PATCH] Add comment for Inventory type --- sphinx/util/typing.py | 1 + 1 file changed, 1 insertion(+) 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]]]