This commit is contained in:
2026-02-27 22:10:46 -05:00
parent fcd60c908b
commit a84ea40d16
11 changed files with 82 additions and 3 deletions

View File

@@ -1,6 +1,11 @@
import sys
import json
import os
import io
# Force UTF-8 for stdout/stderr to avoid encoding issues on Windows
sys.stdout = io.TextIOWrapper(sys.stdout.buffer, encoding='utf-8')
sys.stderr = io.TextIOWrapper(sys.stderr.buffer, encoding='utf-8')
# Add project root to sys.path
sys.path.append(os.path.abspath(os.path.join(os.path.dirname(__file__), "..")))