fix encoding
This commit is contained in:
@@ -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:
|
||||
|
||||
Reference in New Issue
Block a user