chore: format

This commit is contained in:
Ivan 2026-07-25 15:53:36 -05:00
parent b0d47b9ece
commit 9b91c9ac80
No known key found for this signature in database
3 changed files with 4 additions and 7 deletions

Binary file not shown.

View file

@ -330,12 +330,7 @@ try {
}
const bakeCmdParts = pythonCmd.trim().split(/\s+/).filter(Boolean);
const bakeCmd = bakeCmdParts[0];
let bakeArgs = [
...bakeCmdParts.slice(1),
"-m",
"meshchatx.src.backend.bake_frozen_lxst_native",
buildDir,
];
let bakeArgs = [...bakeCmdParts.slice(1), "-m", "meshchatx.src.backend.bake_frozen_lxst_native", buildDir];
let bakeSpawnCmd = bakeCmd;
if (rosettaX64) {
bakeSpawnCmd = "arch";

View file

@ -10,7 +10,9 @@ import pytest
from meshchatx.src.backend.bake_frozen_lxst_native import bake_lxst_filterlib
def test_bake_lxst_filterlib_prunes_alien_blobs(tmp_path: Path, monkeypatch: pytest.MonkeyPatch) -> None:
def test_bake_lxst_filterlib_prunes_alien_blobs(
tmp_path: Path, monkeypatch: pytest.MonkeyPatch
) -> None:
lxst = tmp_path / "lib" / "LXST"
lxst.mkdir(parents=True)
(lxst / "filterlib.dll").write_bytes(b"win")