mirror of
https://gitlab.com/dslackw/slpkg.git
synced 2025-01-29 20:34:22 +01:00
Fixed for type hints
This commit is contained in:
parent
42e9855517
commit
8057e2511e
1 changed files with 2 additions and 2 deletions
|
@ -89,7 +89,7 @@ class Configs:
|
|||
makeflags: str = config['MAKEFLAGS']
|
||||
gpg_verification: bool = config['GPG_VERIFICATION']
|
||||
checksum_md5: bool = config['CHECKSUM_MD5']
|
||||
dialog: str = config['DIALOG']
|
||||
dialog: bool = config['DIALOG']
|
||||
new_packages: bool = config['NEW_PACKAGES']
|
||||
removed_packages: bool = config['REMOVED_PACKAGES']
|
||||
downloader: str = config['DOWNLOADER']
|
||||
|
@ -102,7 +102,7 @@ class Configs:
|
|||
file_list_suffix: str = config['FILE_LIST_SUFFIX']
|
||||
parallel_downloads: bool = config['PARALLEL_DOWNLOADS']
|
||||
maximum_parallel: int = config['MAXIMUM_PARALLEL']
|
||||
progress_bar: str = config['PROGRESS_BAR']
|
||||
progress_bar: bool = config['PROGRESS_BAR']
|
||||
progress_spinner: str = config['PROGRESS_SPINNER']
|
||||
spinner_color: str = config['SPINNER_COLOR']
|
||||
border_color: str = config['BORDER_COLOR']
|
||||
|
|
Loading…
Add table
Reference in a new issue