Remove unnecessary __all__ annotations (#3357)

This commit is contained in:
Sebastian Rittau
2019-10-14 01:22:03 +02:00
committed by Jelle Zijlstra
parent de26a3d109
commit 950f391704
15 changed files with 10 additions and 42 deletions

View File

@@ -1,7 +1,5 @@
# Source: https://hg.python.org/cpython/file/2.7/Lib/_threading_local.py
from typing import Any, List
__all__: List[str]
from typing import Any
class _localbase(object): ...

View File

@@ -4,8 +4,6 @@
from pipes import Template
from typing import Dict, List
__all__: List[str]
table: Dict[str, Template]
t: Template
uncompress: Template