mirror of
https://gitlab.com/dslackw/slpkg.git
synced 2024-11-17 07:48:18 +01:00
Fixed for list
This commit is contained in:
parent
f9e06f916d
commit
e638d2caa4
1 changed files with 1 additions and 1 deletions
|
@ -10,7 +10,7 @@ class Requires:
|
|||
|
||||
def __init__(self, name: str):
|
||||
self.name: str = name
|
||||
self.repo_slackbuilds_names: list = SBoQueries(self.name).sbos()
|
||||
self.repo_slackbuilds_names: list = list(SBoQueries(self.name).sbos())
|
||||
|
||||
def resolve(self) -> list:
|
||||
""" Resolve the dependencies. """
|
||||
|
|
Loading…
Reference in a new issue