Decrement the current octave with 1.
(self)
| 170 | self.change_octave(1) |
| 171 | |
| 172 | def octave_down(self): |
| 173 | """Decrement the current octave with 1.""" |
| 174 | self.change_octave(-1) |
| 175 | |
| 176 | def remove_redundant_accidentals(self): |
| 177 | """Call notes.remove_redundant_accidentals on this note's name.""" |
no test coverage detected