refactor: Update type annotation for autosummary

This commit is contained in:
Takeshi KOMIYA 2020-03-25 00:41:12 +09:00
parent fd9d9f97bf
commit 8f444c373f

View File

@ -326,7 +326,7 @@ def find_autosummary_in_files(filenames: List[str]) -> List[AutosummaryEntry]:
return documented return documented
def find_autosummary_in_docstring(name: str, module: Any = None, filename: str = None def find_autosummary_in_docstring(name: str, module: str = None, filename: str = None
) -> List[AutosummaryEntry]: ) -> List[AutosummaryEntry]:
"""Find out what items are documented in the given object's docstring. """Find out what items are documented in the given object's docstring.
@ -346,7 +346,7 @@ def find_autosummary_in_docstring(name: str, module: Any = None, filename: str =
return [] return []
def find_autosummary_in_lines(lines: List[str], module: Any = None, filename: str = None def find_autosummary_in_lines(lines: List[str], module: str = None, filename: str = None
) -> List[AutosummaryEntry]: ) -> List[AutosummaryEntry]:
"""Find out what items appear in autosummary:: directives in the """Find out what items appear in autosummary:: directives in the
given lines. given lines.