Create the chromatic scale in the chosen key.
(self, key, octaves=1)
| 532 | type = "other" |
| 533 | |
| 534 | def __init__(self, key, octaves=1): |
| 535 | """Create the chromatic scale in the chosen key.""" |
| 536 | self.key = key |
| 537 | self.tonic = get_notes(key)[0] |
| 538 | self.octaves = octaves |
| 539 | self.name = "{0} chromatic".format(self.tonic) |
| 540 | |
| 541 | def ascending(self): |
| 542 | notes = [self.tonic] |
nothing calls this directly
no test coverage detected