(self, raw_text)
| 602 | # ================================================================================ # |
| 603 | class NSWNormalizer: |
| 604 | def __init__(self, raw_text): |
| 605 | self.raw_text = '^' + raw_text + '$' |
| 606 | self.norm_text = '' |
| 607 | |
| 608 | def _particular(self): |
| 609 | text = self.norm_text |
nothing calls this directly
no outgoing calls
no test coverage detected