(self, address)
| 49 | return brush |
| 50 | |
| 51 | def setAddress(self, address): |
| 52 | if address is None: |
| 53 | self.address = None |
| 54 | else: |
| 55 | self.address = str(address) |
| 56 | |
| 57 | def setUnreadCount(self, cnt): |
| 58 | if hasattr(self, "unreadCount") and self.unreadCount == int(cnt): |
no outgoing calls
no test coverage detected