From 08aeac99d64c6c26003ce0af77faa6ee6302ae43 Mon Sep 17 00:00:00 2001 From: luz paz Date: Tue, 25 Jan 2022 13:24:43 -0500 Subject: [PATCH] Fix trivial typos --- SearchBox.py | 2 +- SearchBoxLight.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/SearchBox.py b/SearchBox.py index 9ec3901..02d972d 100644 --- a/SearchBox.py +++ b/SearchBox.py @@ -30,7 +30,7 @@ class SearchBox(QtGui.QLineEdit): maxVisibleRows = self.maxVisibleRows # The following block of code is executed by the lightweight proxy SearchBoxLight ''' - # Call parent cosntructor + # Call parent constructor super(SearchBoxLight, self).__init__(parent) # Connect signals and slots self.textChanged.connect(self.filterModel) diff --git a/SearchBoxLight.py b/SearchBoxLight.py index 2e39d1e..a11b160 100644 --- a/SearchBoxLight.py +++ b/SearchBoxLight.py @@ -13,7 +13,7 @@ class SearchBoxLight(QtGui.QLineEdit): self.getItemDelegate = getItemDelegate self.maxVisibleRows = maxVisibleRows - # Call parent cosntructor + # Call parent constructor super(SearchBoxLight, self).__init__(parent) # Connect signals and slots self.textChanged.connect(self.filterModel)