Skip to content

Commit cd5d8b7

Browse files
committed
Inline unconditional block
1 parent 36d52ed commit cd5d8b7

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

src/pip/_internal/operations/prepare.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -101,9 +101,8 @@ def unpack_vcs_link(link, location):
101101

102102
def _copy_file(filename, download_location):
103103
# type: (str, str) -> None
104-
if True:
105-
shutil.copy(filename, download_location)
106-
logger.info('Saved %s', display_path(download_location))
104+
shutil.copy(filename, download_location)
105+
logger.info('Saved %s', display_path(download_location))
107106

108107

109108
class File(object):

0 commit comments

Comments
 (0)