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

Function supertonic

mingus/core/chords.py:588–595  ·  view source on GitHub ↗

Return the supertonic chord in key. Example: >>> supertonic('C') ['D', 'F', 'A']

(key)

Source from the content-addressed store, hash-verified

586
587
588def supertonic(key):
589 """Return the supertonic chord in key.
590
591 Example:
592 >>> supertonic('C')
593 ['D', 'F', 'A']
594 """
595 return triads(key)[1]
596
597
598def supertonic7(key):

Callers 2

iiFunction · 0.85
IIFunction · 0.85

Calls 1

triadsFunction · 0.85

Tested by

no test coverage detected