diff options
author | Alex Gaynor <alex.gaynor@gmail.com> | 2014-03-16 09:35:24 -0700 |
---|---|---|
committer | Alex Gaynor <alex.gaynor@gmail.com> | 2014-03-16 09:35:24 -0700 |
commit | f70f017501516dca0d9ca69b9b6a19820d82ab42 (patch) | |
tree | 03c6b26c00db8e5d749f69e5df4bcd5fd2cb3427 /tests/hazmat/primitives/test_ciphers.py | |
parent | e171c5fcf47263d4aee35c555844e4c4d7aec5f0 (diff) | |
download | cryptography-f70f017501516dca0d9ca69b9b6a19820d82ab42.tar.gz cryptography-f70f017501516dca0d9ca69b9b6a19820d82ab42.tar.bz2 cryptography-f70f017501516dca0d9ca69b9b6a19820d82ab42.zip |
Tiny style changes to some imports
Diffstat (limited to 'tests/hazmat/primitives/test_ciphers.py')
-rw-r--r-- | tests/hazmat/primitives/test_ciphers.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/tests/hazmat/primitives/test_ciphers.py b/tests/hazmat/primitives/test_ciphers.py index e1f5dbc3..bd9625e9 100644 --- a/tests/hazmat/primitives/test_ciphers.py +++ b/tests/hazmat/primitives/test_ciphers.py @@ -18,12 +18,10 @@ import binascii import pytest from cryptography.exceptions import UnsupportedInterface - from cryptography.hazmat.primitives import ciphers from cryptography.hazmat.primitives.ciphers.algorithms import ( AES, Camellia, TripleDES, Blowfish, ARC4, CAST5, IDEA ) - from cryptography.hazmat.primitives.ciphers.modes import ECB |