(self)
| 226 | getattr(self, self._stepper)() |
| 227 | |
| 228 | def _mult(self): |
| 229 | self.current = self.current * self._stepAmount |
| 230 | |
| 231 | def _add(self): |
| 232 | self.current = self.current + self._stepAmount |
nothing calls this directly
no outgoing calls
no test coverage detected