Skip to content

Commit fa268ae

Browse files
committed
fix pre-commit warnings
1 parent 3008a61 commit fa268ae

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/pip/_internal/network/download.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -183,10 +183,9 @@ def _sequential_download(
183183
def _download_parallel(
184184
self, links: Iterable[Link], location: str, max_workers: int
185185
) -> Iterable[Tuple[Link, Tuple[str, str]]]:
186-
187186
"""
188187
Wraps the _sequential_download method in a ThreadPoolExecutor. `rich`
189-
progress bar doesn't support naive parallelism, hence the progress bar
188+
progress bar doesn't support naive parallelism, hence the progress bar
190189
is disabled for parallel downloads. For more info see PR #12388
191190
"""
192191
with ThreadPoolExecutor(max_workers=max_workers) as pool:

0 commit comments

Comments
 (0)