(self)
| 503 | self.name = "{0} minor Neapolitan".format(self.tonic) |
| 504 | |
| 505 | def ascending(self): |
| 506 | notes = HarmonicMinor(self.tonic).ascending()[:-1] |
| 507 | notes[1] = diminish(notes[1]) |
| 508 | return notes * self.octaves + [notes[0]] |
| 509 | |
| 510 | def descending(self): |
| 511 | notes = NaturalMinor(self.tonic).descending()[:-1] |
nothing calls this directly
no test coverage detected