| 12 | |
| 13 | |
| 14 | class FakePentatonicScales(): |
| 15 | def pentaNum(self): |
| 16 | if self.numNotes is None: |
| 17 | self.numNotes = 5 |
| 18 | return self.numNotes |
| 19 | |
| 20 | |
| 21 | class ScaleDemo(MajorScales, PentatonicScales): |
nothing calls this directly
no outgoing calls
no test coverage detected