Build a diminished triad on note. Example: >>> diminished_triad('C') ['C', 'Eb', 'Gb']
(note)
| 210 | |
| 211 | |
| 212 | def diminished_triad(note): |
| 213 | """Build a diminished triad on note. |
| 214 | |
| 215 | Example: |
| 216 | >>> diminished_triad('C') |
| 217 | ['C', 'Eb', 'Gb'] |
| 218 | """ |
| 219 | return [note, intervals.minor_third(note), intervals.minor_fifth(note)] |
| 220 | |
| 221 | |
| 222 | def augmented_triad(note): |
no outgoing calls
no test coverage detected