aboutsummaryrefslogtreecommitdiffstats
path: root/cryptography
diff options
context:
space:
mode:
authorAlex Gaynor <alex.gaynor@gmail.com>2014-03-16 09:35:24 -0700
committerAlex Gaynor <alex.gaynor@gmail.com>2014-03-16 09:35:24 -0700
commitf70f017501516dca0d9ca69b9b6a19820d82ab42 (patch)
tree03c6b26c00db8e5d749f69e5df4bcd5fd2cb3427 /cryptography
parente171c5fcf47263d4aee35c555844e4c4d7aec5f0 (diff)
downloadcryptography-f70f017501516dca0d9ca69b9b6a19820d82ab42.tar.gz
cryptography-f70f017501516dca0d9ca69b9b6a19820d82ab42.tar.bz2
cryptography-f70f017501516dca0d9ca69b9b6a19820d82ab42.zip
Tiny style changes to some imports
Diffstat (limited to 'cryptography')
-rw-r--r--cryptography/hazmat/primitives/ciphers/base.py5
-rw-r--r--cryptography/hazmat/primitives/hmac.py1
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