(word: str, size: int, text: str)
| 202 | |
| 203 | |
| 204 | def _method_match_substring(word: str, size: int, text: str) -> bool: |
| 205 | return text in word |
| 206 | |
| 207 | |
| 208 | def _method_match_fuzzy(word: str, size: int, text: str) -> bool: |
nothing calls this directly
no outgoing calls
no test coverage detected