Determine the type of chord or interval currently in the container.
(self, shorthand=False)
| 278 | n.diminish() |
| 279 | |
| 280 | def determine(self, shorthand=False): |
| 281 | """Determine the type of chord or interval currently in the |
| 282 | container.""" |
| 283 | return chords.determine(self.get_note_names(), shorthand) |
| 284 | |
| 285 | def transpose(self, interval, up=True): |
| 286 | """Transpose all the notes in the container up or down the given |