From 2277849466d948961e1eaae702cb0fd8e5ec6986 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fabian-Robert=20St=C3=B6ter?= Date: Wed, 28 Jun 2023 09:07:05 +0200 Subject: [PATCH] remove done statement --- musdb/__init__.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/musdb/__init__.py b/musdb/__init__.py index 93776ea..bfb15a7 100644 --- a/musdb/__init__.py +++ b/musdb/__init__.py @@ -400,6 +400,4 @@ def download(self, progress: bool = True, suffix: str = ".zip"): finally: f.close() if os.path.exists(f.name): - os.remove(f.name) - - print('Done!') + os.remove(f.name) \ No newline at end of file