diff options
author | Paul Kehrer <paul.l.kehrer@gmail.com> | 2014-03-16 13:12:50 -0430 |
---|---|---|
committer | Paul Kehrer <paul.l.kehrer@gmail.com> | 2014-03-16 13:12:50 -0430 |
commit | 8322039ff723260c3ce5d10c98a0dfde29470319 (patch) | |
tree | b0c680e1fc44ef198c6eb77fae29722d15cb4c77 /cryptography | |
parent | 563896ff3544c99c13596f46897e16c0b58fc9ab (diff) | |
parent | f70f017501516dca0d9ca69b9b6a19820d82ab42 (diff) | |
download | cryptography-8322039ff723260c3ce5d10c98a0dfde29470319.tar.gz cryptography-8322039ff723260c3ce5d10c98a0dfde29470319.tar.bz2 cryptography-8322039ff723260c3ce5d10c98a0dfde29470319.zip |
Merge pull request #811 from alex/import-style
Tiny style changes to some imports
Diffstat (limited to 'cryptography')
-rw-r--r-- | cryptography/hazmat/primitives/ciphers/base.py | 5 | ||||
-rw-r--r-- | cryptography/hazmat/primitives/hmac.py | 1 |
2 files changed, 2 insertions, 4 deletions
diff --git a/cryptography/hazmat/primitives/ciphers/base.py b/cryptography/hazmat/primitives/ciphers/base.py index 2c804cac..1275019e 100644 --- a/cryptography/hazmat/primitives/ciphers/base.py +++ b/cryptography/hazmat/primitives/ciphers/base.py @@ -15,9 +15,8 @@ from __future__ import absolute_import, division, print_function from cryptography import utils from cryptography.exceptions import ( - AlreadyFinalized, NotYetFinalized, AlreadyUpdated, - UnsupportedInterface) - + AlreadyFinalized, NotYetFinalized, AlreadyUpdated, UnsupportedInterface +) from cryptography.hazmat.backends.interfaces import CipherBackend from cryptography.hazmat.primitives import interfaces diff --git a/cryptography/hazmat/primitives/hmac.py b/cryptography/hazmat/primitives/hmac.py index 18cf7f09..0bcbb3cd 100644 --- a/cryptography/hazmat/primitives/hmac.py +++ b/cryptography/hazmat/primitives/hmac.py @@ -19,7 +19,6 @@ from cryptography import utils from cryptography.exceptions import ( AlreadyFinalized, InvalidSignature, UnsupportedInterface ) - from cryptography.hazmat.backends.interfaces import HMACBackend from cryptography.hazmat.primitives import constant_time, interfaces |