From 02401c836f17cd96d3775d9184ebb26db535f074 Mon Sep 17 00:00:00 2001 From: Jon Dufresne Date: Wed, 31 Jul 2019 06:46:16 -0700 Subject: [PATCH] Add type annotations for Python 3 html.entities (#3161) --- stdlib/3/html/entities.pyi | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) 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]