(self)
| 92 | raise AttributeError("Transform object has no attribute {}".format(name)) |
| 93 | |
| 94 | def __repr__(self): |
| 95 | try: |
| 96 | return _default_repr(self) |
| 97 | except AssertionError as e: |
| 98 | log_once(e.args[0], 'warn') |
| 99 | return super(Transform, self).__repr__() |
| 100 | |
| 101 | __str__ = __repr__ |
| 102 |
no test coverage detected