Skip to content

Commit 2fb38be

Browse files
committed
Fix logging
1 parent db31b05 commit 2fb38be

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

skillsnetwork/core.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -214,7 +214,7 @@ async def prepare(url: str, path: Optional[str] = None, verbose: bool = True) ->
214214
tmp_download_file = Path(f"/tmp/{tmp_extract_dir.name}-{filename}")
215215
# Download the dataset to tmp_download_file file
216216
# File will be overwritten if it already exists
217-
await download(url, tmp_download_file)
217+
await download(url, tmp_download_file, verbose=False)
218218

219219
# Delete tmp_extract_dir directory if it already exists
220220
if tmp_extract_dir.is_dir():
@@ -264,7 +264,6 @@ async def prepare(url: str, path: Optional[str] = None, verbose: bool = True) ->
264264

265265

266266
if _is_jupyterlite():
267-
print("TEST")
268267
tqdm.monitor_interval = 0
269268

270269
# For backwards compatibility

0 commit comments

Comments
 (0)