mirror of
https://gitlab.com/dslackw/slpkg.git
synced 2024-11-17 07:48:18 +01:00
Updated for loop
This commit is contained in:
parent
cfafa18804
commit
a42e6aca85
1 changed files with 1 additions and 1 deletions
|
@ -69,7 +69,7 @@ class SearchPackage(Configs):
|
|||
|
||||
def summary_of_searching(self) -> None:
|
||||
if self.matching:
|
||||
for pkg, item in self.data_dict.items():
|
||||
for item in self.data_dict.values():
|
||||
print(f"{item['repository']}: {self.cyan}{item['name']}{self.endc} "
|
||||
f"{self.yellow}{item['version']}{self.endc}")
|
||||
|
||||
|
|
Loading…
Reference in a new issue