Skip to content

Commit 70134b1

Browse files
committed
docs: linting fix
1 parent 93a1371 commit 70134b1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

examples/src/keyring/aws_kms/act_like_aws_kms_master_key_provider.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ def run(aws_kms_cmk, source_plaintext):
5050
# On encrypt, this master key provider only uses the single target AWS KMS CMK.
5151
# However, on decrypt, this master key provider attempts to decrypt
5252
# any data keys that were encrypted under an AWS KMS CMK.
53-
_master_key_provider_to_replicate = KMSMasterKeyProvider(key_ids=[aws_kms_cmk])
53+
_master_key_provider_to_replicate = KMSMasterKeyProvider(key_ids=[aws_kms_cmk]) # noqa: intentionally never used
5454

5555
# Create a keyring that encrypts and decrypts using a single AWS KMS CMK.
5656
single_cmk_keyring = AwsKmsKeyring(generator_key_id=aws_kms_cmk)

0 commit comments

Comments
 (0)