Skip to content

Commit a84f7bf

Browse files
DefaultRyansbidoul
authored andcommitted
Fix overly long line length
1 parent 14736ea commit a84f7bf

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/pip/_internal/req/req_uninstall.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -314,8 +314,8 @@ def __init__(self, dist: BaseDistribution) -> None:
314314
self._dist = dist
315315
self._moved_paths = StashedUninstallPathSet()
316316
# Create local cache of normalize_path results. Creating an UninstallPathSet
317-
# can result in hundreds/thousands of redundant calls to normalize_path with the same
318-
# args, which hurts performance.
317+
# can result in hundreds/thousands of redundant calls to normalize_path with
318+
# the same args, which hurts performance.
319319
self._normalize_path_cached = functools.lru_cache(maxsize=256)(normalize_path)
320320

321321
def _permitted(self, path: str) -> bool:

0 commit comments

Comments
 (0)