mirror of
https://gitlab.com/dslackw/slpkg.git
synced 2024-12-26 09:58:31 +01:00
Remove split() method
This commit is contained in:
parent
fbb194e1f8
commit
c4ca6d371c
1 changed files with 2 additions and 2 deletions
|
@ -13,9 +13,9 @@ class Requires:
|
|||
|
||||
def resolve(self) -> tuple:
|
||||
""" Resolve the dependencies. """
|
||||
requires: list[str] = self.data[self.name]['requires'].split()
|
||||
requires: list[str] = self.data[self.name]['requires']
|
||||
for require in requires:
|
||||
sub_requires: list[str] = self.data[require]['requires'].split()
|
||||
sub_requires: list[str] = self.data[require]['requires']
|
||||
for sub in sub_requires:
|
||||
requires.append(sub)
|
||||
|
||||
|
|
Loading…
Reference in a new issue