fix(cli): remove stdout and stderr reconfiguration for UTF-8 encoding on Windows

This commit is contained in:
benexl
2025-12-16 17:50:04 +03:00
parent fe92ff8716
commit 04ae196d5f

View File

@@ -4,10 +4,6 @@ import os
if sys.platform.startswith("win"):
os.environ.setdefault("PYTHONUTF8", "1")
try:
sys.stdout.reconfigure(encoding="utf-8")
sys.stderr.reconfigure(encoding="utf-8")
except Exception:
pass
__all__ = ["run_cli"]