mirror of
https://gitlab.com/dslackw/slpkg.git
synced 2024-12-28 09:58:21 +01:00
Fixed for typing
This commit is contained in:
parent
196fa475d1
commit
0f8057d178
1 changed files with 1 additions and 1 deletions
|
@ -99,7 +99,7 @@ class Slackbuilds(Configs):
|
|||
def creating_dependencies_list(self) -> None:
|
||||
if not self.option_for_resolve_off:
|
||||
for sbo in self.slackbuilds:
|
||||
deps: list = Requires(self.data, sbo).resolve()
|
||||
deps: tuple = Requires(self.data, sbo).resolve()
|
||||
|
||||
for dep in deps:
|
||||
# Skip installed package when the option --skip-installed is applied.
|
||||
|
|
Loading…
Reference in a new issue