(self, data)
| 28 | f' {type(transform)}') |
| 29 | |
| 30 | def __call__(self, data): |
| 31 | for t in self.transforms: |
| 32 | data = t(data) |
| 33 | if data is None: |
| 34 | return None |
| 35 | return data |
| 36 | |
| 37 | def __repr__(self): |
| 38 | format_string = self.__class__.__name__ + '(' |
nothing calls this directly
no outgoing calls
no test coverage detected