fix: update README for marketplace installation and improve hooks_cli file encoding

This commit is contained in:
Tal Muskal
2026-04-08 19:33:16 +03:00
parent 4de5229f10
commit 34c8f8c1b8
2 changed files with 3 additions and 8 deletions
+1 -1
View File
@@ -46,7 +46,7 @@ def _count_human_messages(transcript_path: str) -> int:
return 0
count = 0
try:
with open(path) as f:
with open(path, encoding="utf-8", errors="replace") as f:
for line in f:
try:
entry = json.loads(line)