Skip to content

Commit

Permalink
Merge pull request #562 from bioimage-io/fix_line_endings
Browse files Browse the repository at this point in the history
fix wrong line endings in generated files
  • Loading branch information
FynnBe authored Mar 15, 2024
2 parents 1bde3bb + bc9226f commit 01a89f4
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion scripts/generate_version_submodule_imports.py
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,8 @@ def process(info: Info, check: bool):
)
)
else:
_ = package_init.write_text(updated)
with package_init.open("w", newline="\n") as f:
_ = f.write(updated)


def get_ordered_version_submodules(target: str):
Expand Down

0 comments on commit 01a89f4

Please sign in to comment.