summaryrefslogtreecommitdiff
path: root/src/pip/_internal/operations/prepare.py
diff options
context:
space:
mode:
authorBen Mares <15216687+maresb@users.noreply.github.com>2021-07-29 15:50:25 -0700
committerGitHub <noreply@github.com>2021-07-29 15:50:25 -0700
commit89f6c918066174b62f4e20ef1c6ba79070c673a3 (patch)
tree423f96aca1dcdaee9e466e18c48b13e4cb2e65f3 /src/pip/_internal/operations/prepare.py
parenta2252a3b332fa3cf9d8692ef7486e6c78af984e9 (diff)
downloadpip-89f6c918066174b62f4e20ef1c6ba79070c673a3.tar.gz
Improve style for multiline string
Co-authored-by: Pradyun Gedam <pradyunsg@gmail.com>
Diffstat (limited to 'src/pip/_internal/operations/prepare.py')
-rw-r--r--src/pip/_internal/operations/prepare.py8
1 files changed, 5 insertions, 3 deletions
diff --git a/src/pip/_internal/operations/prepare.py b/src/pip/_internal/operations/prepare.py
index abf275644..a57c1116d 100644
--- a/src/pip/_internal/operations/prepare.py
+++ b/src/pip/_internal/operations/prepare.py
@@ -216,9 +216,11 @@ def unpack_url(
# be removed.
if link.is_existing_dir():
deprecated(
- reason="pip copied the source tree into a temporary directory "
- "before building it. This is changing so that packages are built in-place "
- 'within the original source tree ("in-tree build").',
+ reason=(
+ "pip copied the source tree into a temporary directory "
+ "before building it. This is changing so that packages are built in-place "
+ 'within the original source tree ("in-tree build").'
+ ),
replacement=None,
gone_in="21.3",
feature_flag="in-tree-build",