Build an augmented major seventh chord on note. Example: >>> augmented_major_seventh('C') ['C', 'E', 'G#', 'B']
(note)
| 517 | |
| 518 | |
| 519 | def augmented_major_seventh(note): |
| 520 | """Build an augmented major seventh chord on note. |
| 521 | |
| 522 | Example: |
| 523 | >>> augmented_major_seventh('C') |
| 524 | ['C', 'E', 'G#', 'B'] |
| 525 | """ |
| 526 | return augmented_triad(note) + [intervals.major_seventh(note)] |
| 527 | |
| 528 | |
| 529 | def augmented_minor_seventh(note): |
nothing calls this directly
no test coverage detected