Skip to content

Commit 161805c

Browse files
committed
chore: fix linter
1 parent 087ead9 commit 161805c

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

scripts/import_and_patch_translators.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -308,7 +308,7 @@ def generate_manifest():
308308

309309
manifest_path = ROOT / "translators" / "manifest.json"
310310
try:
311-
manifest_path.write_text(json.dumps(out, indent=2), encoding="utf-8")
311+
manifest_path.write_text(json.dumps(out, indent=2) + "\n", encoding="utf-8")
312312
print("Wrote manifest to", manifest_path)
313313
except Exception as e:
314314
print("Failed to write manifest:", e)

translators/manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9183,4 +9183,4 @@
91839183
"minVersion": "4.0",
91849184
"maxVersion": ""
91859185
}
9186-
]
9186+
]

0 commit comments

Comments
 (0)