def rm()

in hooks/post_gen_project.py [0:0]


    def rm(s: Path) -> None:
        try:
            Path(s).unlink()
        except FileNotFoundError:
            pass