fix encoding

This commit is contained in:
Mikan
2025-06-02 14:22:46 +03:00
parent 83cfcd9fb1
commit 4f10dd93c5
5 changed files with 10 additions and 10 deletions

View File

@@ -10,7 +10,7 @@ class FileAnalyzer:
Анализирует файл и извлекает информацию о функциях.
"""
log(f"Analyzing file: {file_path}")
with open(file_path, "r") as f:
with open(file_path, "r", encoding="utf-8") as f:
code = f.read()
try: