From 14a1f2dbf7ddd58b709a27c7a2ed9ae6a2c88d0e Mon Sep 17 00:00:00 2001 From: Mohammed Attia Date: Mon, 3 Mar 2014 16:41:56 +0200 Subject: Change public_key from abstractproperty to abstractmethod --- cryptography/hazmat/primitives/interfaces.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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. -- cgit v1.2.3