aboutsummaryrefslogtreecommitdiffstats
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
parentecac0290b7fedc71e72b1fb0a7bfc02433a11f7f (diff)
downloadcryptography-f575ec18b36fd87ff54d63ed959781070efdf053.tar.gz
cryptography-f575ec18b36fd87ff54d63ed959781070efdf053.tar.bz2
cryptography-f575ec18b36fd87ff54d63ed959781070efdf053.zip
Fixed style nitpick
-rw-r--r--cryptography/hazmat/primitives/hmac.py3
-rw-r--r--tests/hazmat/primitives/test_hmac.py3
2 files changed, 4 insertions, 2 deletions
diff --git a/cryptography/hazmat/primitives/hmac.py b/cryptography/hazmat/primitives/hmac.py
index 9e1d8d02..18cf7f09 100644
--- a/cryptography/hazmat/primitives/hmac.py
+++ b/cryptography/hazmat/primitives/hmac.py
@@ -17,7 +17,8 @@ import six
from cryptography import utils
from cryptography.exceptions import (
- AlreadyFinalized, InvalidSignature, UnsupportedInterface)
+ AlreadyFinalized, InvalidSignature, UnsupportedInterface
+)
from cryptography.hazmat.backends.interfaces import HMACBackend
from cryptography.hazmat.primitives import constant_time, interfaces
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