diff options
| author | Mohammed Attia <skeuomorf@gmail.com> | 2014-03-03 16:41:56 +0200 |
|---|---|---|
| committer | Mohammed Attia <skeuomorf@gmail.com> | 2014-03-03 16:41:56 +0200 |
| commit | 14a1f2dbf7ddd58b709a27c7a2ed9ae6a2c88d0e (patch) | |
| tree | c0b10e71165169207bd99b6f7289835e0338c20e | |
| parent | d0b0c73d1d87423f4a63ba05ab4cf1f290a5af02 (diff) | |
| download | cryptography-14a1f2dbf7ddd58b709a27c7a2ed9ae6a2c88d0e.tar.gz cryptography-14a1f2dbf7ddd58b709a27c7a2ed9ae6a2c88d0e.tar.bz2 cryptography-14a1f2dbf7ddd58b709a27c7a2ed9ae6a2c88d0e.zip | |
Change public_key from abstractproperty to abstractmethod
| -rw-r--r-- | cryptography/hazmat/primitives/interfaces.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cryptography/hazmat/primitives/interfaces.py b/cryptography/hazmat/primitives/interfaces.py index 663f9655..3d345a99 100644 --- a/cryptography/hazmat/primitives/interfaces.py +++ b/cryptography/hazmat/primitives/interfaces.py @@ -371,7 +371,7 @@ class DSAPrivateKey(six.with_metaclass(abc.ABCMeta)): The private key in the DSA structure. """ - @abc.abstractproperty + @abc.abstractmethod def public_key(self): """ The DSAPublicKey associated with this private key. |
