Skip to content

Commit eff441b

Browse files
committed
fix(python): wrap long write_bytes line for ruff format
1 parent 0cf3fe8 commit eff441b

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

python/openshell/sandbox_test.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1381,7 +1381,9 @@ def test_load_cluster_bearer_token_handles_non_ascii_utf8_oidc(tmp_path: Path) -
13811381
"client_id": "c",
13821382
"client_secret": "s",
13831383
}
1384-
(gateway_dir / "oidc_token.json").write_bytes(json.dumps(bundle, ensure_ascii=False).encode("utf-8"))
1384+
(gateway_dir / "oidc_token.json").write_bytes(
1385+
json.dumps(bundle, ensure_ascii=False).encode("utf-8")
1386+
)
13851387
token = _load_cluster_bearer_token(gateway_dir)
13861388
assert token == "accéss"
13871389

0 commit comments

Comments
 (0)