(self, note, octaves)
| 94 | """ |
| 95 | |
| 96 | def __init__(self, note, octaves): |
| 97 | if note.islower(): |
| 98 | raise NoteFormatError("Unrecognised note '%s'" % note) |
| 99 | |
| 100 | self.tonic = note |
| 101 | self.octaves = octaves |
| 102 | |
| 103 | def __repr__(self): |
| 104 | return "<Scale object ('{0}')>".format(self.name) |
nothing calls this directly
no test coverage detected