Skip to content

Commit d8e20f1

Browse files
committed
fix flake8; gitignore
1 parent 7f65d22 commit d8e20f1

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

.gitignore

+4-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,10 @@ __pycache__
3232
# PyTest
3333
.pytest_cache
3434
# Ignore key materials generated by examples or tests
35-
test_keyrings
35+
user_public_key_file_name.pem
36+
user_private_key_file_name.pem
37+
my-encrypted-data.ct
38+
my-decrypted-data.dat
3639

3740
# PyCharm
3841
.idea/

examples/src/keyrings/file_streaming_example.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,9 @@
2424
For more information on how to use Raw AES keyrings, see
2525
https://docs.aws.amazon.com/encryption-sdk/latest/developer-guide/use-raw-aes-keyring.html
2626
"""
27+
import filecmp
2728
import secrets
2829
import sys
29-
import filecmp
3030

3131
from aws_cryptographic_materialproviders.mpl import AwsCryptographicMaterialProviders
3232
from aws_cryptographic_materialproviders.mpl.config import MaterialProvidersConfig

0 commit comments

Comments
 (0)