(self, tokenizer, process_fn=None)
| 108 | """ |
| 109 | |
| 110 | def __init__(self, tokenizer, process_fn=None): |
| 111 | self.tokenizer = tokenizer |
| 112 | self.process_fn = process_fn |
| 113 | |
| 114 | def __call__(self, string): |
| 115 | if self.tokenizer is not None: |
nothing calls this directly
no outgoing calls
no test coverage detected