remove unused function

This commit is contained in:
Daniel 2023-12-07 21:57:55 +01:00
parent 9b52796f79
commit d6449d7c25

View file

@ -35,8 +35,3 @@ def rmtree(root_dir: Path):
child.unlink() child.unlink()
root_dir.rmdir() root_dir.rmdir()
def make_url(domain: str) -> str:
"""adds 'http://' at the beginning of a string"""
return "https://" + domain