From edee7cfb3cc5af16afa557f1279c22ee6663a61f Mon Sep 17 00:00:00 2001 From: Jon Dufresne Date: Wed, 31 Jul 2019 00:06:02 -0700 Subject: [PATCH] Remove unused import from stdlib/2/htmlentitydefs.pyi (#3162) --- stdlib/2/htmlentitydefs.pyi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stdlib/2/htmlentitydefs.pyi b/stdlib/2/htmlentitydefs.pyi index 6ae88e757..d1aadb3b8 100644 --- a/stdlib/2/htmlentitydefs.pyi +++ b/stdlib/2/htmlentitydefs.pyi @@ -1,4 +1,4 @@ -from typing import Any, Mapping +from typing import Mapping name2codepoint: Mapping[str, int] codepoint2name: Mapping[int, str]