(self)
| 407 | self.name = "{0} natural minor".format(self.tonic) |
| 408 | |
| 409 | def ascending(self): |
| 410 | notes = get_notes(self.tonic.lower()) |
| 411 | return notes * self.octaves + [notes[0]] |
| 412 | |
| 413 | |
| 414 | class HarmonicMinor(_Scale): |
nothing calls this directly
no test coverage detected