Build a dominant flat five chord on note. Example: >>> dominant_flat_five('C') ['C', 'E', 'Gb', 'Bb']
(note)
| 537 | |
| 538 | |
| 539 | def dominant_flat_five(note): |
| 540 | """Build a dominant flat five chord on note. |
| 541 | |
| 542 | Example: |
| 543 | >>> dominant_flat_five('C') |
| 544 | ['C', 'E', 'Gb', 'Bb'] |
| 545 | """ |
| 546 | res = dominant_seventh(note) |
| 547 | res[2] = notes.diminish(res[2]) |
| 548 | return res |
| 549 | |
| 550 | |
| 551 | def lydian_dominant_seventh(note): |
nothing calls this directly
no test coverage detected