Skip to content

Commit b69c418

Browse files
committed
fix flake8
1 parent 7f95db8 commit b69c418

3 files changed

+0
-5
lines changed

examples/src/migration/migration_to_aws_kms_keyring_from_aws_kms_master_key_provider_example.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -216,7 +216,6 @@ def migration_to_aws_kms_keyring_from_aws_kms_master_key_provider(
216216
For more information on KMS Key identifiers, see
217217
https://docs.aws.amazon.com/kms/latest/developerguide/concepts.html#key-id
218218
"""
219-
220219
# 1a. Create a AWS KMS Keyring
221220
aws_kms_keyring = AwsKmsKeyring.create_keyring(kms_key_id=kms_key_id)
222221

examples/src/migration/migration_to_raw_aes_keyring_from_raw_aes_master_key_provider_example.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -231,7 +231,6 @@ def migration_to_raw_aes_keyring_from_raw_aes_master_key_provider():
231231
232232
Usage: migration_to_raw_aes_keyring_from_raw_aes_master_key_provider()
233233
"""
234-
235234
# 1a. Create a Raw AES Keyring
236235
raw_aes_keyring = RawAesKeyring.create_keyring()
237236

examples/src/migration/migration_to_raw_rsa_keyring_from_raw_rsa_master_key_provider_example.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,6 @@
3838
from typing import Dict # noqa pylint: disable=wrong-import-order
3939

4040
import aws_encryption_sdk
41-
from aws_encryption_sdk import CommitmentPolicy
42-
from aws_encryption_sdk.exceptions import AWSEncryptionSDKClientError
4341
from aws_encryption_sdk.identifiers import EncryptionKeyType, WrappingAlgorithm
4442
from aws_encryption_sdk.internal.crypto.wrapping_keys import WrappingKey
4543
from aws_encryption_sdk.key_providers.raw import RawMasterKeyProvider
@@ -282,7 +280,6 @@ def migration_to_raw_rsa_keyring_from_raw_rsa_master_key_provider(
282280
283281
Usage: migration_to_raw_rsa_keyring_from_raw_rsa_master_key_provider(public_key, private_key)
284282
"""
285-
286283
# 1a. Create a Raw RSA Keyring
287284
raw_rsa_keyring = RawRsaKeyring.create_keyring(public_key=public_key, private_key=private_key)
288285

0 commit comments

Comments
 (0)