fix thread start

This commit is contained in:
Josh Hawkins 2024-10-07 11:29:29 -05:00
parent ce80aeba78
commit e34f94851f

View File

@ -68,7 +68,7 @@ class ModelDownloader:
target=self._download_models,
name=f"_download_model_{self.model_name}",
daemon=True,
).start()
)
self.download_thread.start()
def _download_models(self):