Build the sixth/ninth chord on note. Example: >>> sixth_ninth('C') ['C', 'E', 'G', 'A', 'D']
(note)
| 353 | |
| 354 | |
| 355 | def sixth_ninth(note): |
| 356 | """Build the sixth/ninth chord on note. |
| 357 | |
| 358 | Example: |
| 359 | >>> sixth_ninth('C') |
| 360 | ['C', 'E', 'G', 'A', 'D'] |
| 361 | """ |
| 362 | return major_sixth(note) + [intervals.major_second(note)] |
| 363 | |
| 364 | |
| 365 | def minor_ninth(note): |
nothing calls this directly
no test coverage detected