Skip to content

Commit

Permalink
search, type fix
Browse files Browse the repository at this point in the history
  • Loading branch information
jakobandersen committed Sep 18, 2021
1 parent 9aa5ed9 commit 1f7cf50
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions sphinx/search/__init__.py
Expand Up @@ -304,8 +304,8 @@ def dump(self, stream: IO, format: Any) -> None:
format.dump(self.freeze(), stream)

def get_objects(self, fn2index: Dict[str, int]
) -> Dict[str, Dict[str, Tuple[int, int, int, str]]]:
rv: Dict[str, Dict[str, Tuple[int, int, int, str]]] = {}
) -> Dict[str, List[Tuple[int, int, int, str, str]]]:
rv: Dict[str, List[Tuple[int, int, int, str, str]]] = {}
otypes = self._objtypes
onames = self._objnames
for domainname, domain in sorted(self.env.domains.items()):
Expand Down

0 comments on commit 1f7cf50

Please sign in to comment.