diff --git a/stdlib/3/html/entities.pyi b/stdlib/3/html/entities.pyi index e8ce9f650..97d9b2d32 100644 --- a/stdlib/3/html/entities.pyi +++ b/stdlib/3/html/entities.pyi @@ -1,6 +1,6 @@ -from typing import Any +from typing import Dict -name2codepoint: Any -html5: Any -codepoint2name: Any -entitydefs: Any +name2codepoint: Dict[str, int] +html5: Dict[str, str] +codepoint2name: Dict[int, str] +entitydefs: Dict[str, str]