aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlex Gaynor <alex.gaynor@gmail.com>2014-10-30 14:25:24 -0700
committerAlex Gaynor <alex.gaynor@gmail.com>2014-10-30 14:25:24 -0700
commitc7c37b5670edf89b2ddcf914cf533d3f7476cb80 (patch)
tree030463cac9e294c4215f00628ff7b05d7316dc7f
parent4123ae18895d5f7627c9fc351a2c978e6e6f88b4 (diff)
downloadcryptography-c7c37b5670edf89b2ddcf914cf533d3f7476cb80.tar.gz
cryptography-c7c37b5670edf89b2ddcf914cf533d3f7476cb80.tar.bz2
cryptography-c7c37b5670edf89b2ddcf914cf533d3f7476cb80.zip
flake8 fix
-rw-r--r--cryptography/hazmat/primitives/cmac.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/cryptography/hazmat/primitives/cmac.py b/cryptography/hazmat/primitives/cmac.py
index d5e26a57..6f722031 100644
--- a/cryptography/hazmat/primitives/cmac.py
+++ b/cryptography/hazmat/primitives/cmac.py
@@ -15,10 +15,10 @@ from __future__ import absolute_import, division, print_function
from cryptography import utils
from cryptography.exceptions import (
- AlreadyFinalized, InvalidSignature, UnsupportedAlgorithm, _Reasons
+ AlreadyFinalized, UnsupportedAlgorithm, _Reasons
)
from cryptography.hazmat.backends.interfaces import CMACBackend
-from cryptography.hazmat.primitives import constant_time, interfaces
+from cryptography.hazmat.primitives import interfaces
@utils.register_interface(interfaces.MACContext)