We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6a97036 commit 3137547Copy full SHA for 3137547
pertpy/data/_dataloader.py
@@ -51,7 +51,7 @@ def _download( # pragma: no cover
51
response = requests.get(url, stream=True)
52
total = int(response.headers.get("content-length", 0))
53
54
- with Progress(refresh_per_second=100) as progress:
+ with Progress(refresh_per_second=5) as progress:
55
task = progress.add_task("[red]Downloading...", total=total)
56
with Path(temp_file_name).open("wb") as file:
57
for data in response.iter_content(block_size):
0 commit comments