(self, sanitizer)
| 154 | |
| 155 | class SanitizedString: |
| 156 | def __init__(self, sanitizer): |
| 157 | self.sanitizer = sanitizer |
| 158 | self.string = "" |
| 159 | self.explanation = [] |
| 160 | |
| 161 | def __call__(self, thing): |
| 162 | self.string = self.sanitizer(thing) |
nothing calls this directly
no outgoing calls
no test coverage detected