Simplify x509.Name.get_attributes_for_oid
diff --git a/src/cryptography/x509.py b/src/cryptography/x509.py
index 8a888d2..8a6ecc8 100644
--- a/src/cryptography/x509.py
+++ b/src/cryptography/x509.py
@@ -109,7 +109,7 @@
         self._attributes = attributes
 
     def get_attributes_for_oid(self, oid):
-        return [i for i in self._attributes if i.oid == oid]
+        return [i for i in self if i.oid == oid]
 
     def __eq__(self, other):
         if not isinstance(other, Name):