From 58fc566b0e7e2e527a1e3f7c10d1213b34c4881e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=90=D1=80=D1=82=D0=B5=D0=BC?= Date: Thu, 3 Nov 2022 11:20:25 +0300 Subject: [PATCH] Update uiSections.py fix typo --- wingetui/uiSections.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wingetui/uiSections.py b/wingetui/uiSections.py index 34c662c3d7..17d089fac0 100644 --- a/wingetui/uiSections.py +++ b/wingetui/uiSections.py @@ -997,7 +997,7 @@ def addItem(self, name: str, id: str, version: str, newVersion: str, store) -> N def filter(self) -> None: resultsFound = self.packageList.findItems(self.query.text(), Qt.MatchContains, 1) resultsFound += self.packageList.findItems(self.query.text(), Qt.MatchContains, 2) - print(f"🟢 Searching for stringg \"{self.query.text()}\"") + print(f"🟢 Searching for string \"{self.query.text()}\"") found = 0 for item in self.packageList.findItems('', Qt.MatchContains, 1): if not(item in resultsFound):