From 75b63fce919b7fb0e4ab6eca23c9c26c1b39904e Mon Sep 17 00:00:00 2001 From: doctorpangloss <@hiddenswitch.com> Date: Mon, 6 May 2024 10:31:58 -0700 Subject: [PATCH] Remove redudant resume_download argument --- comfy/model_downloader.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/comfy/model_downloader.py b/comfy/model_downloader.py index 210324ff5..49d19924c 100644 --- a/comfy/model_downloader.py +++ b/comfy/model_downloader.py @@ -74,7 +74,7 @@ def get_or_download(folder_name: str, filename: str, known_files: List[HuggingFi filename=known_file.filename, local_dir=hf_destination_dir, repo_type=known_file.repo_type, - resume_download=True) + ) if known_file.convert_to_16_bit and file_size is not None and file_size != 0: tensors = {}