Remove unused argument from generate_metadata

This commit is contained in:
Stéphane Bidoul 2020-04-07 17:00:11 +02:00
parent 34adf0a258
commit 030578ef04
No known key found for this signature in database
GPG Key ID: BCAB2555446B5B92
2 changed files with 0 additions and 2 deletions

View File

@ -43,7 +43,6 @@ def generate_metadata(
build_env, # type: BuildEnvironment
setup_py_path, # type: str
source_dir, # type: str
editable, # type: bool
isolated, # type: bool
details, # type: str
):

View File

@ -516,7 +516,6 @@ class InstallRequirement(object):
build_env=self.build_env,
setup_py_path=self.setup_py_path,
source_dir=self.unpacked_source_directory,
editable=self.editable,
isolated=self.isolated,
details=self.name or "from {}".format(self.link)
)