Sort the notes in the container from low to high.
(self)
| 264 | return res |
| 265 | |
| 266 | def sort(self): |
| 267 | """Sort the notes in the container from low to high.""" |
| 268 | self.notes.sort() |
| 269 | |
| 270 | def augment(self): |
| 271 | """Augment all the notes in the NoteContainer.""" |