Enable the '+' operator for Compositions.
(self, composition)
| 81 | self.compositions[index] = value |
| 82 | |
| 83 | def __add__(self, composition): |
| 84 | """Enable the '+' operator for Compositions.""" |
| 85 | return self.add_composition(composition) |
nothing calls this directly
no test coverage detected