(self)
| 104 | return "<Scale object ('{0}')>".format(self.name) |
| 105 | |
| 106 | def __str__(self): |
| 107 | return "Ascending: {0}\nDescending: {1}".format( |
| 108 | " ".join(self.ascending()), " ".join(self.descending()) |
| 109 | ) |
| 110 | |
| 111 | def __eq__(self, other): |
| 112 | if self.ascending() == other.ascending(): |
nothing calls this directly
no test coverage detected