Skip to content

Commit 0015089

Browse files
pradyunsgxavfernandez
authored andcommitted
Suffix "_path" to InstallRequirement.pyproject_toml
1 parent 449d268 commit 0015089

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/pip/_internal/req/req_install.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -470,7 +470,7 @@ def setup_py(self):
470470
return setup_py
471471

472472
@property
473-
def pyproject_toml(self):
473+
def pyproject_toml_path(self):
474474
# type: () -> str
475475
assert self.source_dir, "No source dir for %s" % self
476476

@@ -487,7 +487,7 @@ def load_pyproject_toml(self):
487487
"""
488488
pyproject_toml_data = load_pyproject_toml(
489489
self.use_pep517,
490-
self.pyproject_toml,
490+
self.pyproject_toml_path,
491491
self.setup_py,
492492
str(self)
493493
)

0 commit comments

Comments
 (0)