Build an augmented minor seventh chord on note. Example: >>> augmented_minor_seventh('C') ['C', 'E', 'G#', 'Bb']
(note)
| 527 | |
| 528 | |
| 529 | def augmented_minor_seventh(note): |
| 530 | """Build an augmented minor seventh chord on note. |
| 531 | |
| 532 | Example: |
| 533 | >>> augmented_minor_seventh('C') |
| 534 | ['C', 'E', 'G#', 'Bb'] |
| 535 | """ |
| 536 | return augmented_triad(note) + [intervals.minor_seventh(note)] |
| 537 | |
| 538 | |
| 539 | def dominant_flat_five(note): |
nothing calls this directly
no test coverage detected