Fixed for type hints

This commit is contained in:
Dimitris Zlatanidis 2024-04-09 13:12:06 +03:00
parent 42e9855517
commit 8057e2511e

View file

@ -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']