Return the list of ascending notes.
(self)
| 121 | return len(self.ascending()) |
| 122 | |
| 123 | def ascending(self): |
| 124 | """Return the list of ascending notes.""" |
| 125 | raise NotImplementedError |
| 126 | |
| 127 | def descending(self): |
| 128 | """Return the list of descending notes.""" |
no outgoing calls
no test coverage detected