Add missing imports from typing (#933)

This commit is contained in:
Ivan Levkivskyi
2017-02-14 19:59:01 +01:00
committed by Guido van Rossum
parent f869a5d351
commit 22c0353498
7 changed files with 7 additions and 7 deletions

View File

@@ -6,7 +6,7 @@ from .bucketlistresultset import BucketListResultSet
from .connection import S3Connection
from .key import Key
from typing import Any, Dict, Optional, Text, Type
from typing import Any, Dict, Optional, Text, Type, List
class S3WebsiteEndpointTranslate:
trans_region = ... # type: Dict[str, str]

View File

@@ -1,4 +1,4 @@
from typing import Any, AnyStr
from typing import Any, AnyStr, Set
from .base import SchemaEventTarget, DialectKWArgs
from .base import ColumnCollection