Empty the container.
(self)
| 44 | self.add_notes(notes) |
| 45 | |
| 46 | def empty(self): |
| 47 | """Empty the container.""" |
| 48 | self.notes = [] |
| 49 | |
| 50 | def add_note(self, note, octave=None, dynamics=None): |
| 51 | """Add a note to the container and sorts the notes from low to high. |
no outgoing calls
no test coverage detected