diff options
author | Jakob Lykke Andersen <Jakob@caput.dk> | 2021-10-31 13:26:38 +0100 |
---|---|---|
committer | Jakob Lykke Andersen <Jakob@caput.dk> | 2021-10-31 13:26:38 +0100 |
commit | 778a3fe6a7a4caf9152caa5c9b10d5378de671c2 (patch) | |
tree | 8167690a3e6795408984bf741c8ea83c30007c3a /sphinx/util/typing.py | |
parent | cfbac2ceaafc38954c633bd05a6297d8ce89e6e3 (diff) | |
download | sphinx-git-778a3fe6a7a4caf9152caa5c9b10d5378de671c2.tar.gz |
ntersphinx_disabled_refs, type rename
Diffstat (limited to 'sphinx/util/typing.py')
-rw-r--r-- | sphinx/util/typing.py | 4 |
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]: |