An alias for can_play_notes.
(self, notes)
| 76 | return False |
| 77 | |
| 78 | def notes_in_range(self, notes): |
| 79 | """An alias for can_play_notes.""" |
| 80 | return self.can_play_notes(notes) |
| 81 | |
| 82 | def can_play_notes(self, notes): |
| 83 | """Test if the notes lie within the range of the instrument. |
nothing calls this directly
no test coverage detected