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

Function diminished_seventh

mingus/core/chords.py:305–312  ·  view source on GitHub ↗

Build a diminished seventh chord on note. Example: >>> diminished_seventh('C') ['C', 'Eb', 'Gb', 'Bbb']

(note)

Source from the content-addressed store, hash-verified

303
304
305def diminished_seventh(note):
306 """Build a diminished seventh chord on note.
307
308 Example:
309 >>> diminished_seventh('C')
310 ['C', 'Eb', 'Gb', 'Bbb']
311 """
312 return diminished_triad(note) + [notes.diminish(intervals.minor_seventh(note))]
313
314
315def minor_major_seventh(note):

Callers

nothing calls this directly

Calls 2

diminished_triadFunction · 0.85
diminishMethod · 0.45

Tested by

no test coverage detected