(self, text: str)
| 111 | """ Restore valid entities """ |
| 112 | |
| 113 | def run(self, text: str) -> str: |
| 114 | text = text.replace(util.AMP_SUBSTITUTE, "&") |
| 115 | return text |
| 116 | |
| 117 | |
| 118 | @util.deprecated( |
nothing calls this directly
no outgoing calls
no test coverage detected