make sure codegen doesn't cause spurious diffs for no reason

This commit is contained in:
Ashwin Bharambe 2024-11-20 13:55:43 -08:00
parent 681322731b
commit 00816cc8ef
2 changed files with 2 additions and 2 deletions

View file

@ -103,7 +103,7 @@ def generate_dependencies_file():
deps_file = REPO_ROOT / "distributions" / "dependencies.json"
with open(deps_file, "w") as f:
json.dump(distribution_deps, f, indent=2)
f.write(json.dumps(distribution_deps, indent=2) + "\n")
def main():