(self)
| 58 | on_complete = me.EmbeddedDocumentField(NotificationSubSchema) |
| 59 | |
| 60 | def __str__(self): |
| 61 | result = [] |
| 62 | result.append("NotifySchema@") |
| 63 | result.append(str(id(self))) |
| 64 | result.append('(on_complete="%s", ' % str(self.on_complete)) |
| 65 | result.append('on_success="%s", ' % str(self.on_success)) |
| 66 | result.append('on_failure="%s")' % str(self.on_failure)) |
| 67 | return "".join(result) |
nothing calls this directly
no outgoing calls
no test coverage detected