Skip to content

Commit 33f511c

Browse files
committed
Indent by 4 spaces instead of 3
1 parent 70667da commit 33f511c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/script.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ def gen_bzl_config(tag: str, dist: Path) -> None:
4949
packages_lock_name_upper = packages_lock_name.upper()
5050
info = {"tag": tag, "lockfile_hash": lock_hash, "all_wheels_hash": all_wheels_hash}
5151
json_contents = {"info": info, "import_tests": imports_to_test}
52-
packages_lock_json = indent(json.dumps(json_contents, indent=3, sort_keys=True), " "*12).strip()
52+
packages_lock_json = indent(json.dumps(json_contents, indent=4, sort_keys=True), " "*12).strip()
5353
Path(dist / (packages_lock_name + ".bzl")).write_text(
5454
dedent(
5555
f"""\

0 commit comments

Comments
 (0)