commit | 14a1f2dbf7ddd58b709a27c7a2ed9ae6a2c88d0e | [log] [tgz] |
---|---|---|
author | Mohammed Attia <skeuomorf@gmail.com> | Mon Mar 03 16:41:56 2014 +0200 |
committer | Mohammed Attia <skeuomorf@gmail.com> | Mon Mar 03 16:41:56 2014 +0200 |
tree | c0b10e71165169207bd99b6f7289835e0338c20e | |
parent | d0b0c73d1d87423f4a63ba05ab4cf1f290a5af02 [diff] |
Change public_key from abstractproperty to abstractmethod
diff --git a/cryptography/hazmat/primitives/interfaces.py b/cryptography/hazmat/primitives/interfaces.py index 663f965..3d345a9 100644 --- a/cryptography/hazmat/primitives/interfaces.py +++ b/cryptography/hazmat/primitives/interfaces.py
@@ -371,7 +371,7 @@ The private key in the DSA structure. """ - @abc.abstractproperty + @abc.abstractmethod def public_key(self): """ The DSAPublicKey associated with this private key.