aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPaul Kehrer <paul.l.kehrer@gmail.com>2015-05-02 19:36:20 -0500
committerPaul Kehrer <paul.l.kehrer@gmail.com>2015-05-02 19:36:20 -0500
commitf24bad7ee68fe0a10756f428d3bc742c53e22efa (patch)
treebb4a73626912f8eedc6b123a97f34e8ec7f65d8a
parentb047617df8aeb51efed4ed761ff84c8b49cfced0 (diff)
downloadcryptography-f24bad7ee68fe0a10756f428d3bc742c53e22efa.tar.gz
cryptography-f24bad7ee68fe0a10756f428d3bc742c53e22efa.tar.bz2
cryptography-f24bad7ee68fe0a10756f428d3bc742c53e22efa.zip
let's not wrap this for no reason
-rw-r--r--src/cryptography/x509.py4
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