DEPRECATED Use the write function of the AlertOutput class
(self, *args, **kwargs)
| 232 | pass |
| 233 | |
| 234 | def alert(self, *args, **kwargs): |
| 235 | """ |
| 236 | DEPRECATED |
| 237 | Use the write function of the AlertOutput class |
| 238 | """ |
| 239 | warnings.warn("Use the write function of the AlertOutput class", DeprecationWarning) |
| 240 | self.write(*args, **kwargs) |
| 241 | |
| 242 | def dump(self, *args, **kwargs): |
| 243 | """ |
no test coverage detected