diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/cryptography/x509.py | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/cryptography/x509.py b/src/cryptography/x509.py index 6fcbfe6f..a37e2d08 100644 --- a/src/cryptography/x509.py +++ b/src/cryptography/x509.py @@ -297,9 +297,7 @@ class ExtendedKeyUsage(object): if not isinstance(other, ExtendedKeyUsage): return NotImplemented - return ( - self._usages == other._usages - ) + return self._usages == other._usages def __ne__(self, other): return not self == other |