(self, func)
| 77 | class StatelessInputTransformer(InputTransformer): |
| 78 | """Wrapper for a stateless input transformer implemented as a function.""" |
| 79 | def __init__(self, func): |
| 80 | self.func = func |
| 81 | |
| 82 | def __repr__(self): |
| 83 | return "StatelessInputTransformer(func={0!r})".format(self.func) |
nothing calls this directly
no outgoing calls
no test coverage detected