(self, other)
| 300 | return "imgaug.TransformList([\n{}])".format(repr_each_tfm) |
| 301 | |
| 302 | def __add__(self, other): |
| 303 | other = other.tfms if isinstance(other, TransformList) else [other] |
| 304 | return TransformList(self.tfms + other) |
| 305 | |
| 306 | def __iadd__(self, other): |
| 307 | other = other.tfms if isinstance(other, TransformList) else [other] |
nothing calls this directly
no test coverage detected