(self)
| 429 | self.name = "{0} harmonic minor".format(self.tonic) |
| 430 | |
| 431 | def ascending(self): |
| 432 | notes = NaturalMinor(self.tonic).ascending()[:-1] |
| 433 | notes[6] = augment(notes[6]) |
| 434 | return notes * self.octaves + [notes[0]] |
| 435 | |
| 436 | |
| 437 | class MelodicMinor(_Scale): |
nothing calls this directly
no test coverage detected