(cls, uri: str)
| 173 | |
| 174 | @classmethod |
| 175 | def from_uri(cls, uri: str) -> TyposquattingOutputBase: |
| 176 | return cls.get_format(uri)() |
| 177 | |
| 178 | @abstractmethod |
| 179 | def output_typosquatting(self, entries): |
nothing calls this directly
no test coverage detected