Build a diminished seventh chord on note. Example: >>> diminished_seventh('C') ['C', 'Eb', 'Gb', 'Bbb']
(note)
| 303 | |
| 304 | |
| 305 | def diminished_seventh(note): |
| 306 | """Build a diminished seventh chord on note. |
| 307 | |
| 308 | Example: |
| 309 | >>> diminished_seventh('C') |
| 310 | ['C', 'Eb', 'Gb', 'Bbb'] |
| 311 | """ |
| 312 | return diminished_triad(note) + [notes.diminish(intervals.minor_seventh(note))] |
| 313 | |
| 314 | |
| 315 | def minor_major_seventh(note): |
nothing calls this directly
no test coverage detected