Build an augmented triad on note. Example: >>> augmented_triad('C') ['C', 'E', 'G#']
(note)
| 220 | |
| 221 | |
| 222 | def augmented_triad(note): |
| 223 | """Build an augmented triad on note. |
| 224 | |
| 225 | Example: |
| 226 | >>> augmented_triad('C') |
| 227 | ['C', 'E', 'G#'] |
| 228 | """ |
| 229 | return [ |
| 230 | note, |
| 231 | intervals.major_third(note), |
| 232 | notes.augment(intervals.major_fifth(note)), |
| 233 | ] |
| 234 | |
| 235 | |
| 236 | def seventh(note, key): |
no test coverage detected