fix: do not re-download sources by default

This commit is contained in:
Akash Yadav
2024-12-28 17:43:00 +05:30
parent 96e3471525
commit e593f54692

View File

@@ -12,7 +12,7 @@ from tqdm import tqdm
def download(url, filepath: Path):
if filepath.exists():
print(f"{filepath} already exists.")
if query_yes_no("Do want to re-download?", default="yes"):
if query_yes_no("Do want to re-download?", default="no"):
print(f"Removing {filepath}...")
os.remove(filepath)
else: