Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 38bd4d0

Browse files
committedJan 11, 2019
autoformat
1 parent f37fda8 commit 38bd4d0

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed
 

‎src/dynamodb_encryption_sdk/material_providers/aws_kms.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -214,7 +214,9 @@ def __attrs_post_init__(self):
214214
default_algorithm=_DEFAULT_SIGNING_ALGORITHM,
215215
default_key_length=_DEFAULT_SIGNING_KEY_LENGTH,
216216
)
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
218220

219221
def _add_regional_client(self, region_name):
220222
# type: (Text) -> None

‎src/dynamodb_encryption_sdk/material_providers/store/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

1818
from dynamodb_encryption_sdk.exceptions import NoKnownVersionError
1919
from dynamodb_encryption_sdk.material_providers import ( # noqa pylint: disable=unused-import
20-
CryptographicMaterialsProvider
20+
CryptographicMaterialsProvider,
2121
)
2222

2323
try: # Python 3.5.0 and 3.5.1 have incompatible typing modules

0 commit comments

Comments
 (0)
Please sign in to comment.