Skip to content

Commit

Permalink
Move the form link to make the linter happy
Browse files Browse the repository at this point in the history
  • Loading branch information
pradyunsg committed Jul 27, 2020
1 parent 01c3d89 commit 08cc238
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/pip/_internal/commands/install.py
Original file line number Diff line number Diff line change
Expand Up @@ -554,9 +554,10 @@ def _warn_about_conflicts(self, conflict_details, new_resolver):
"already have installed. This may cause an uncaught "
"dependency conflict.\n"
)
form_link = "https://forms.gle/cWKMoDs8sUVE29hz9"
parts.append(
"If you would like pip to take your other packages into "
"account, please tell us here: https://forms.gle/cWKMoDs8sUVE29hz9\n"
"account, please tell us here: {}\n".format(form_link)
)
else:
parts.append(
Expand Down

0 comments on commit 08cc238

Please sign in to comment.