Build a dominant flat ninth chord on note. Example: >>> dominant_flat_ninth('C') ['C', 'E', 'G', 'Bb', 'Db']
(note)
| 393 | |
| 394 | |
| 395 | def dominant_flat_ninth(note): |
| 396 | """Build a dominant flat ninth chord on note. |
| 397 | |
| 398 | Example: |
| 399 | >>> dominant_flat_ninth('C') |
| 400 | ['C', 'E', 'G', 'Bb', 'Db'] |
| 401 | """ |
| 402 | res = dominant_ninth(note) |
| 403 | res[4] = intervals.minor_second(note) |
| 404 | return res |
| 405 | |
| 406 | |
| 407 | def dominant_sharp_ninth(note): |
nothing calls this directly
no test coverage detected