diff --git a/slpkg/sbos/slackbuild.py b/slpkg/sbos/slackbuild.py index 54870e52..c8421b1a 100644 --- a/slpkg/sbos/slackbuild.py +++ b/slpkg/sbos/slackbuild.py @@ -352,7 +352,6 @@ class Slackbuilds(Configs): for package in dependencies: status: bool = True - repo_ver: str = self.data[package][2] description: str = self.data[package][8] help_text: str = f'Description: {description}' @@ -364,10 +363,11 @@ class Slackbuilds(Configs): if self.option_for_reinstall: status: bool = True - choices.extend([(package, repo_ver, status, help_text)]) + choices.extend( + [(package, repo_ver, status, help_text)] + ) text: str = f'There are {len(choices)} dependencies:' - code, tags = self.dialogbox.checklist(text, dependencies, title, height, width, list_height, choices) if not code: