Increment the current octave with 1.
(self)
| 166 | self.octave = 0 |
| 167 | |
| 168 | def octave_up(self): |
| 169 | """Increment the current octave with 1.""" |
| 170 | self.change_octave(1) |
| 171 | |
| 172 | def octave_down(self): |
| 173 | """Decrement the current octave with 1.""" |
no test coverage detected