removed print statement
This commit is contained in:
parent
4f4f60cfe4
commit
1bd9c4c4a9
1 changed files with 1 additions and 2 deletions
|
@ -135,7 +135,7 @@ class ChooseProjects:
|
||||||
return affected_projects
|
return affected_projects
|
||||||
|
|
||||||
|
|
||||||
def add_dependencies(self, projects: Set[str]):
|
def add_dependencies(self, projects: Set[str]) -> Set[str]:
|
||||||
"""Return projects and their dependencies.
|
"""Return projects and their dependencies.
|
||||||
|
|
||||||
All all dependencies to `projects` so that they can be built.
|
All all dependencies to `projects` so that they can be built.
|
||||||
|
@ -148,7 +148,6 @@ class ChooseProjects:
|
||||||
for project in result:
|
for project in result:
|
||||||
if project in self.dependencies:
|
if project in self.dependencies:
|
||||||
changes.update(self.dependencies[project])
|
changes.update(self.dependencies[project])
|
||||||
print(changes)
|
|
||||||
result.update(changes)
|
result.update(changes)
|
||||||
return result
|
return result
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue