(args)
| 32 | |
| 33 | |
| 34 | def main(args): |
| 35 | f_p = pl.Path(args.file) |
| 36 | with open(f_p, "r") as f: |
| 37 | lines = f.read() |
| 38 | lines = lines.rstrip(os.linesep) |
| 39 | lines += os.linesep |
| 40 | with open(f_p, "w") as f: |
| 41 | f.write(lines) |
| 42 | |
| 43 | |
| 44 | if __name__ == "__main__": |
no test coverage detected