Build the famous Hendrix chord (7b12). Example: >>> hendrix_chord('C') ['C', 'E', 'G', 'Bb', 'Eb']
(note)
| 559 | |
| 560 | |
| 561 | def hendrix_chord(note): |
| 562 | """Build the famous Hendrix chord (7b12). |
| 563 | |
| 564 | Example: |
| 565 | >>> hendrix_chord('C') |
| 566 | ['C', 'E', 'G', 'Bb', 'Eb'] |
| 567 | """ |
| 568 | return dominant_seventh(note) + [intervals.minor_third(note)] |
| 569 | |
| 570 | |
| 571 | def tonic(key): |
nothing calls this directly
no test coverage detected