(self, schema)
| 152 | """ |
| 153 | |
| 154 | def execute(self, schema): |
| 155 | result = schema.attributes.get(self.ref) |
| 156 | if self.filter(result): |
| 157 | result = self.__deepsearch(schema) |
| 158 | return self.result(result) |
| 159 | |
| 160 | def __deepsearch(self, schema): |
| 161 | from suds.xsd.sxbasic import Attribute |
no test coverage detected