Augment the NoteContainers in Bar.
(self)
| 168 | return 1.0 / self.space_left() |
| 169 | |
| 170 | def augment(self): |
| 171 | """Augment the NoteContainers in Bar.""" |
| 172 | for cont in self.bar: |
| 173 | cont[2].augment() |
| 174 | |
| 175 | def diminish(self): |
| 176 | """Diminish the NoteContainers in Bar.""" |
no outgoing calls