(self)
| 508 | return notes * self.octaves + [notes[0]] |
| 509 | |
| 510 | def descending(self): |
| 511 | notes = NaturalMinor(self.tonic).descending()[:-1] |
| 512 | notes[6] = diminish(notes[6]) |
| 513 | return notes * self.octaves + [notes[0]] |
| 514 | |
| 515 | |
| 516 | # Other scales |
nothing calls this directly
no test coverage detected