aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlex Gaynor <alex.gaynor@gmail.com>2014-10-30 14:25:47 -0700
committerAlex Gaynor <alex.gaynor@gmail.com>2014-10-30 14:25:47 -0700
commitef5195f581c672a06369c0fadf07fabb6e89bf83 (patch)
tree7cf4ccbf111d303c351a7e1c18f9f956b924a121
parent754d459b4746e84218164593e5b88208e178f1da (diff)
downloadcryptography-ef5195f581c672a06369c0fadf07fabb6e89bf83.tar.gz
cryptography-ef5195f581c672a06369c0fadf07fabb6e89bf83.tar.bz2
cryptography-ef5195f581c672a06369c0fadf07fabb6e89bf83.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)