diff options
author | Mohammed Attia <skeuomorf@gmail.com> | 2014-03-03 16:49:59 +0200 |
---|---|---|
committer | Mohammed Attia <skeuomorf@gmail.com> | 2014-03-03 16:49:59 +0200 |
commit | 7470453ee9264c6c76f678220bc1b812d194b9df (patch) | |
tree | a1c6660b29657bf7f3bc69073fc69b877dc9e443 | |
parent | 14a1f2dbf7ddd58b709a27c7a2ed9ae6a2c88d0e (diff) | |
download | cryptography-7470453ee9264c6c76f678220bc1b812d194b9df.tar.gz cryptography-7470453ee9264c6c76f678220bc1b812d194b9df.tar.bz2 cryptography-7470453ee9264c6c76f678220bc1b812d194b9df.zip |
fix pep8 errors
-rw-r--r-- | cryptography/hazmat/primitives/interfaces.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/cryptography/hazmat/primitives/interfaces.py b/cryptography/hazmat/primitives/interfaces.py index 3d345a99..ba6436e0 100644 --- a/cryptography/hazmat/primitives/interfaces.py +++ b/cryptography/hazmat/primitives/interfaces.py @@ -475,6 +475,7 @@ class DSAPublicKey(six.with_metaclass(abc.ABCMeta)): The params associated with a DSA keypair """ + class AsymmetricSignatureContext(six.with_metaclass(abc.ABCMeta)): @abc.abstractmethod def update(self, data): |