File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed
src/dynamodb_encryption_sdk/material_providers Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -214,7 +214,9 @@ def __attrs_post_init__(self):
214
214
default_algorithm = _DEFAULT_SIGNING_ALGORITHM ,
215
215
default_key_length = _DEFAULT_SIGNING_KEY_LENGTH ,
216
216
)
217
- self ._regional_clients = {} # type: Dict[Text, botocore.client.BaseClient] # noqa pylint: disable=attribute-defined-outside-init
217
+ self ._regional_clients = (
218
+ {}
219
+ ) # type: Dict[Text, botocore.client.BaseClient] # noqa pylint: disable=attribute-defined-outside-init
218
220
219
221
def _add_regional_client (self , region_name ):
220
222
# type: (Text) -> None
Original file line number Diff line number Diff line change 17
17
18
18
from dynamodb_encryption_sdk .exceptions import NoKnownVersionError
19
19
from dynamodb_encryption_sdk .material_providers import ( # noqa pylint: disable=unused-import
20
- CryptographicMaterialsProvider
20
+ CryptographicMaterialsProvider ,
21
21
)
22
22
23
23
try : # Python 3.5.0 and 3.5.1 have incompatible typing modules
You can’t perform that action at this time.
0 commit comments