(self, schema)
| 190 | """ |
| 191 | |
| 192 | def execute(self, schema): |
| 193 | result = schema.elements.get(self.ref) |
| 194 | if self.filter(result): |
| 195 | result = self.__deepsearch(schema) |
| 196 | return self.result(result) |
| 197 | |
| 198 | def __deepsearch(self, schema): |
| 199 | from suds.xsd.sxbasic import Element |
no test coverage detected