(self, other)
| 309 | return self |
| 310 | |
| 311 | def __radd__(self, other): |
| 312 | other = other.tfms if isinstance(other, TransformList) else [other] |
| 313 | return TransformList(other + self.tfms) |
| 314 | |
| 315 | __repr__ = __str__ |
| 316 |
nothing calls this directly
no test coverage detected