papermario/tools/old/new_lines.py

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

16 lines
340 B
Python
Raw Normal View History

from pathlib import Path
def parse_folder(path):
for entry in path.iterdir():
if entry.is_dir():
parse_folder(entry)
else:
fd = entry.read_text().splitlines()
if fd[-1] != "":
fd.append("")
entry.write_text("\n".join(fd))
parse_folder(Path("src"))