aboutsummaryrefslogtreecommitdiffstats
path: root/tests/hazmat/primitives/test_pbkdf2hmac.py
diff options
context:
space:
mode:
authorAlex Gaynor <alex.gaynor@gmail.com>2014-03-15 09:31:47 -0700
committerAlex Gaynor <alex.gaynor@gmail.com>2014-03-15 09:31:47 -0700
commit0d377e3fd03a2765ce5723c56800745671a45d22 (patch)
tree317208d44155fec3bac8d855e9b718c98780747d /tests/hazmat/primitives/test_pbkdf2hmac.py
parentd49eae65a42ea08719253bed400fe81203bf7d38 (diff)
downloadcryptography-0d377e3fd03a2765ce5723c56800745671a45d22.tar.gz
cryptography-0d377e3fd03a2765ce5723c56800745671a45d22.tar.bz2
cryptography-0d377e3fd03a2765ce5723c56800745671a45d22.zip
Small style cleanup for imports
Diffstat (limited to 'tests/hazmat/primitives/test_pbkdf2hmac.py')
-rw-r--r--tests/hazmat/primitives/test_pbkdf2hmac.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/tests/hazmat/primitives/test_pbkdf2hmac.py b/tests/hazmat/primitives/test_pbkdf2hmac.py
index a47d879e..bf1e7f14 100644
--- a/tests/hazmat/primitives/test_pbkdf2hmac.py
+++ b/tests/hazmat/primitives/test_pbkdf2hmac.py
@@ -18,9 +18,8 @@ import six
from cryptography import utils
from cryptography.exceptions import (
- InvalidKey, UnsupportedHash, AlreadyFinalized,
- UnsupportedInterface)
-
+ InvalidKey, UnsupportedHash, AlreadyFinalized, UnsupportedInterface
+)
from cryptography.hazmat.primitives import hashes, interfaces
from cryptography.hazmat.primitives.kdf.pbkdf2 import PBKDF2HMAC
from cryptography.hazmat.backends import default_backend