mirror of
https://gitlab.com/dslackw/slpkg.git
synced 2024-12-29 10:26:12 +01:00
Updated for coding style
This commit is contained in:
parent
82784ce92b
commit
69860b8492
1 changed files with 3 additions and 3 deletions
|
@ -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:
|
||||
|
|
Loading…
Reference in a new issue