aboutsummaryrefslogtreecommitdiffstats
path: root/tests/hazmat/primitives
diff options
context:
space:
mode:
authorAyrx <terrycwk1994@gmail.com>2014-03-16 19:48:43 +0800
committerAyrx <terrycwk1994@gmail.com>2014-03-16 19:50:11 +0800
commitf575ec18b36fd87ff54d63ed959781070efdf053 (patch)
tree16f6829b08e636d17a0e59bce5f70d2df230e23b /tests/hazmat/primitives
parentecac0290b7fedc71e72b1fb0a7bfc02433a11f7f (diff)
downloadcryptography-f575ec18b36fd87ff54d63ed959781070efdf053.tar.gz
cryptography-f575ec18b36fd87ff54d63ed959781070efdf053.tar.bz2
cryptography-f575ec18b36fd87ff54d63ed959781070efdf053.zip
Fixed style nitpick
Diffstat (limited to 'tests/hazmat/primitives')
-rw-r--r--tests/hazmat/primitives/test_hmac.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/hazmat/primitives/test_hmac.py b/tests/hazmat/primitives/test_hmac.py
index 24988e76..af177d7a 100644
--- a/tests/hazmat/primitives/test_hmac.py
+++ b/tests/hazmat/primitives/test_hmac.py
@@ -22,7 +22,8 @@ import six
from cryptography import utils
from cryptography.exceptions import (
AlreadyFinalized, UnsupportedHash, InvalidSignature,
- UnsupportedInterface)
+ UnsupportedInterface
+)
from cryptography.hazmat.backends.interfaces import HMACBackend
from cryptography.hazmat.primitives import hashes, hmac, interfaces