From 748ad3d21fd62e141f24b98f752f2114165afdc5 Mon Sep 17 00:00:00 2001 From: Eric Traut Date: Sat, 9 Mar 2019 17:57:54 -0800 Subject: [PATCH] Removed extraneous import statement that was redefining three symbols in markupsafe/__init__.py. This redefinition triggered type checking/linting errors. (#2842) --- third_party/2and3/markupsafe/__init__.pyi | 1 - 1 file changed, 1 deletion(-) diff --git a/third_party/2and3/markupsafe/__init__.pyi b/third_party/2and3/markupsafe/__init__.pyi index 53d67a166..e230a4bab 100644 --- a/third_party/2and3/markupsafe/__init__.pyi +++ b/third_party/2and3/markupsafe/__init__.pyi @@ -4,7 +4,6 @@ from typing import Any, Callable, Dict, Iterable, List, Optional, Sequence, Text from collections import Mapping from markupsafe._compat import text_type import string -from markupsafe._speedups import escape as escape, escape_silent as escape_silent, soft_unicode as soft_unicode from markupsafe._native import escape as escape, escape_silent as escape_silent, soft_unicode as soft_unicode class Markup(text_type):