Skip to content

Commit a4a89ce

Browse files
authored
Add encoding to PRELUDE reading
1 parent f8fd3f4 commit a4a89ce

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

zippy/zippy.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ def clean_text(s : str) -> str:
4242

4343
# The prelude file is a text file containing only AI-generated text, it is used to 'seed' the LZMA dictionary
4444
PRELUDE_FILE : str = 'ai-generated.txt'
45-
PRELUDE_STR = clean_text(files('zippy').joinpath(PRELUDE_FILE).read_text())
45+
PRELUDE_STR = clean_text(files('zippy').joinpath(PRELUDE_FILE).read_text(encoding='utf-8'))
4646

4747
class AIDetector(ABC):
4848
'''

0 commit comments

Comments
 (0)