Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/sphinx-doc/sphinx.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJakob Lykke Andersen <Jakob@caput.dk>2021-10-31 15:26:38 +0300
committerJakob Lykke Andersen <Jakob@caput.dk>2021-10-31 15:26:38 +0300
commit778a3fe6a7a4caf9152caa5c9b10d5378de671c2 (patch)
tree8167690a3e6795408984bf741c8ea83c30007c3a /sphinx/util
parentcfbac2ceaafc38954c633bd05a6297d8ce89e6e3 (diff)
ntersphinx_disabled_refs, type rename
Diffstat (limited to 'sphinx/util')
-rw-r--r--sphinx/util/typing.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/sphinx/util/typing.py b/sphinx/util/typing.py
index b7e591a82..e1972d86d 100644
--- a/sphinx/util/typing.py
+++ b/sphinx/util/typing.py
@@ -70,8 +70,8 @@ OptionSpec = Dict[str, Callable[[str], Any]]
TitleGetter = Callable[[nodes.Node], str]
# inventory data on memory
-InventoryInner = Tuple[str, str, str, str]
-Inventory = Dict[str, Dict[str, InventoryInner]]
+InventoryItem = Tuple[str, str, str, str]
+Inventory = Dict[str, Dict[str, InventoryItem]]
def get_type_hints(obj: Any, globalns: Dict = None, localns: Dict = None) -> Dict[str, Any]: