(filename: str)
| 784 | |
| 785 | |
| 786 | def is_text_file(filename: str) -> bool: |
| 787 | with open(filename, mode="rb") as f: |
| 788 | s = f.read(1024) |
| 789 | return b"\x00" not in s |
| 790 | |
| 791 | |
| 792 | def ask_for_word_fix( |
no outgoing calls
no test coverage detected
searching dependent graphs…