Enum that represents switch between local and web word parsing.
| 16 | |
| 17 | |
| 18 | class Source(Enum): |
| 19 | """Enum that represents switch between local and web word parsing.""" |
| 20 | |
| 21 | FROM_FILE = 0 # noqa: WPS115 |
| 22 | FROM_INTERNET = 1 # noqa: WPS115 |
| 23 | |
| 24 | |
| 25 | def print_wrong(text: str, print_function: Callable[[str], None]) -> None: |
no outgoing calls