From 6e34fc91274d7bff28c83f294d049fbab4b971c5 Mon Sep 17 00:00:00 2001 From: David Fisher Date: Tue, 7 Mar 2017 14:33:55 -0800 Subject: [PATCH] Remove semicolon in type (#976) --- third_party/3/lxml/etree.pyi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/third_party/3/lxml/etree.pyi b/third_party/3/lxml/etree.pyi index 39e5077e3..598b95ad4 100644 --- a/third_party/3/lxml/etree.pyi +++ b/third_party/3/lxml/etree.pyi @@ -17,7 +17,7 @@ DictAnyStr = Union[Dict[str, str], Dict[bytes, bytes]] Dict_Tuple2AnyStr_Any = Union[Dict[Tuple[str, str], Any], Tuple[bytes, bytes], Any] -class ElementChildIterator(Iterator['_Element;']): +class ElementChildIterator(Iterator['_Element']): def __iter__(self) -> 'ElementChildIterator': ... def __next__(self) -> '_Element': ...