mirror of
https://gitlab.com/dslackw/slpkg.git
synced 2024-11-17 07:48:18 +01:00
Updated for naming
This commit is contained in:
parent
a7887c924d
commit
dba39837bb
1 changed files with 3 additions and 3 deletions
|
@ -33,6 +33,6 @@ class Requires:
|
||||||
|
|
||||||
def remove_deps(self, requires: list) -> Generator:
|
def remove_deps(self, requires: list) -> Generator:
|
||||||
""" Remove requires that not in the repository or blacklisted. """
|
""" Remove requires that not in the repository or blacklisted. """
|
||||||
for dependency in requires:
|
for require in requires:
|
||||||
if dependency in self.repository_packages:
|
if require in self.repository_packages:
|
||||||
yield dependency
|
yield require
|
||||||
|
|
Loading…
Reference in a new issue