def augmented_triad(note): """Build an augmented triad on note. Example: >>> augmented_triad('C') ['C', 'E', 'G#'] """ return [note, intervals.major_third(note), notes.augment(intervals.major_fifth(note))]
def augmented_triad(note): """Builds an augmented triad on note. Example: {{{ >>> augmented_triad("C") ["C", "E", "G#"] }}}""" return [note, intervals.major_third(note),\ notes.augment(intervals.major_fifth(note))]
def augmented_triad(note): """Builds an augmented triad on note. Example: {{{ >>> augmented_triad(\"C\") [\"C\", \"E\", \"G#\"] }}}""" return [note, intervals.major_third(note), notes.augment(intervals.major_fifth(note))]
def augmented_triad(note): """Builds an augmented triad on note. Example: {{{ >>> augmented_triad(\"C\") [\"C\", \"E\", \"G#\"] }}}""" return [ note, intervals.major_third(note), notes.augment(intervals.major_fifth(note)) ]