add make_url util function

This commit is contained in:
Daniel 2023-11-30 11:49:31 +01:00
parent f270f3d4a9
commit 1b3396baf4

View file

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