Updated for coding style

This commit is contained in:
Dimitris Zlatanidis 2023-05-07 20:21:30 +03:00
parent 82784ce92b
commit 69860b8492

View file

@ -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: