diff options
-rw-r--r-- | cryptography/hazmat/primitives/interfaces.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cryptography/hazmat/primitives/interfaces.py b/cryptography/hazmat/primitives/interfaces.py index 245302e6..a6da7db1 100644 --- a/cryptography/hazmat/primitives/interfaces.py +++ b/cryptography/hazmat/primitives/interfaces.py @@ -358,7 +358,7 @@ class DSAPrivateKey(six.with_metaclass(abc.ABCMeta)): The public key. """ - @abc.abstractproperty + @abc.abstractmethod def parameters(self): """ The DSAParams object associated with this private key. @@ -372,7 +372,7 @@ class DSAPublicKey(six.with_metaclass(abc.ABCMeta)): The public key. """ - @abc.abstractproperty + @abc.abstractmethod def parameters(self): """ The DSAParams object associated with this public key. |