(self, message, duration=3)
| 273 | The currently shown message, if there is any, will be replaced by calling this method. |
| 274 | ''' |
| 275 | def showMessage(self, message, duration=3): |
| 276 | self.currentReply["showMessage"] = { |
| 277 | "message": message, |
| 278 | "duration": duration |
| 279 | } |
| 280 | |
| 281 | def hideMessage(self): |
| 282 | self.currentReply["hideMessage"] = True |
no outgoing calls
no test coverage detected