Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
rzblue committed Oct 28, 2024
1 parent 4a05019 commit 8e61e33
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion wpimath/generate_numbers.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
def output(output_dir: Path, outfn: str, contents: str):
output_dir.mkdir(parents=True, exist_ok=True)
output_file = output_dir / outfn
output_file.write_text(contents, encoding="utf-8")
output_file.write_text(contents, encoding="utf-8", newline="\n")


def generate_numbers(output_directory: Path, template_root: Path):
Expand Down

0 comments on commit 8e61e33

Please sign in to comment.