Remove semicolon in type (#976)

This commit is contained in:
David Fisher
2017-03-07 14:33:55 -08:00
committed by Guido van Rossum
parent f34c550f04
commit 6e34fc9127

View File

@@ -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': ...