Counts the number of warnings that occurs.
(self, msg)
| 56 | pass |
| 57 | |
| 58 | def warn(self, msg): |
| 59 | """Counts the number of warnings that occurs.""" |
| 60 | self._warnings += 1 |
| 61 | return Command.warn(self, msg) |
| 62 | |
| 63 | def run(self): |
| 64 | """Runs the command.""" |
no outgoing calls
no test coverage detected