Remove unused import statements (#2282)

This commit is contained in:
Yusuke Miyazaki
2018-06-28 12:14:57 +09:00
committed by Jelle Zijlstra
parent f8041d08db
commit 86883d3df9
11 changed files with 9 additions and 12 deletions

View File

@@ -1,6 +1,6 @@
# NB: third_party/3/enum.pyi and stdlib/3.4/enum.pyi must remain consistent!
import sys
from typing import List, Any, TypeVar, Union, Iterator, TypeVar, Generic, Type, Sized, Mapping
from typing import Any, Iterator, List, Mapping, Type, TypeVar, Union
from abc import ABCMeta
_T = TypeVar('_T')