Function
dominant7
Return the dominant seventh chord in key.
(key)
Source from the content-addressed store, hash-verified
| 641 | |
| 642 | |
| 643 | def dominant7(key): |
| 644 | """Return the dominant seventh chord in key.""" |
| 645 | return sevenths(key)[4] |
| 646 | |
| 647 | |
| 648 | def submediant(key): |
Tested by
no test coverage detected