We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f8fd3f4 commit a4a89ceCopy full SHA for a4a89ce
zippy/zippy.py
@@ -42,7 +42,7 @@ def clean_text(s : str) -> str:
42
43
# The prelude file is a text file containing only AI-generated text, it is used to 'seed' the LZMA dictionary
44
PRELUDE_FILE : str = 'ai-generated.txt'
45
-PRELUDE_STR = clean_text(files('zippy').joinpath(PRELUDE_FILE).read_text())
+PRELUDE_STR = clean_text(files('zippy').joinpath(PRELUDE_FILE).read_text(encoding='utf-8'))
46
47
class AIDetector(ABC):
48
'''
0 commit comments