diff options
author | Ayrx <terrycwk1994@gmail.com> | 2014-03-16 19:48:43 +0800 |
---|---|---|
committer | Ayrx <terrycwk1994@gmail.com> | 2014-03-16 19:50:11 +0800 |
commit | f575ec18b36fd87ff54d63ed959781070efdf053 (patch) | |
tree | 16f6829b08e636d17a0e59bce5f70d2df230e23b /cryptography/hazmat/primitives/hmac.py | |
parent | ecac0290b7fedc71e72b1fb0a7bfc02433a11f7f (diff) | |
download | cryptography-f575ec18b36fd87ff54d63ed959781070efdf053.tar.gz cryptography-f575ec18b36fd87ff54d63ed959781070efdf053.tar.bz2 cryptography-f575ec18b36fd87ff54d63ed959781070efdf053.zip |
Fixed style nitpick
Diffstat (limited to 'cryptography/hazmat/primitives/hmac.py')
-rw-r--r-- | cryptography/hazmat/primitives/hmac.py | 3 |
1 files changed, 2 insertions, 1 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 |