MCPcopy Create free account
hub / github.com/bspaans/python-mingus / augmented_minor_seventh

Function augmented_minor_seventh

mingus/core/chords.py:529–536  ·  view source on GitHub ↗

Build an augmented minor seventh chord on note. Example: >>> augmented_minor_seventh('C') ['C', 'E', 'G#', 'Bb']

(note)

Source from the content-addressed store, hash-verified

527
528
529def augmented_minor_seventh(note):
530 """Build an augmented minor seventh chord on note.
531
532 Example:
533 >>> augmented_minor_seventh('C')
534 ['C', 'E', 'G#', 'Bb']
535 """
536 return augmented_triad(note) + [intervals.minor_seventh(note)]
537
538
539def dominant_flat_five(note):

Callers

nothing calls this directly

Calls 1

augmented_triadFunction · 0.85

Tested by

no test coverage detected