Build the altered chord 6/7 on note. Example: >>> dominant_sixth('C') ['C', 'E', 'G', 'A', 'Bb']
(note)
| 343 | |
| 344 | |
| 345 | def dominant_sixth(note): |
| 346 | """Build the altered chord 6/7 on note. |
| 347 | |
| 348 | Example: |
| 349 | >>> dominant_sixth('C') |
| 350 | ['C', 'E', 'G', 'A', 'Bb'] |
| 351 | """ |
| 352 | return major_sixth(note) + [intervals.minor_seventh(note)] |
| 353 | |
| 354 | |
| 355 | def sixth_ninth(note): |
nothing calls this directly
no test coverage detected