Capital S in BuildSystemDetails

This commit is contained in:
Thomas Kluyver 2019-11-23 16:46:40 +00:00
parent 6f55872bf3
commit da0ff0db76
1 changed files with 3 additions and 3 deletions

View File

@ -34,7 +34,7 @@ def make_pyproject_path(unpacked_source_directory):
return path
BuildsystemDetails = namedtuple('BuildsystemDetails', [
BuildSystemDetails = namedtuple('BuildSystemDetails', [
'requires', 'backend', 'check', 'backend_path'
])
@ -45,7 +45,7 @@ def load_pyproject_toml(
setup_py, # type: str
req_name # type: str
):
# type: (...) -> Optional[BuildsystemDetails]
# type: (...) -> Optional[BuildSystemDetails]
"""Load the pyproject.toml file.
Parameters:
@ -193,4 +193,4 @@ def load_pyproject_toml(
backend = "setuptools.build_meta:__legacy__"
check = ["setuptools>=40.8.0", "wheel"]
return BuildsystemDetails(requires, backend, check, backend_path)
return BuildSystemDetails(requires, backend, check, backend_path)