This commit is contained in:
Kovid Goyal 2023-09-28 08:04:25 +05:30
commit 921d99f810
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C

View File

@ -39,8 +39,8 @@ class ResultsView(QTreeView):
download_requested = pyqtSignal(object)
open_requested = pyqtSignal(object)
def __init__(self, *args):
QTreeView.__init__(self,*args)
def __init__(self, *args, **kwargs):
QTreeView.__init__(self,*args, **kwargs)
self._model = Matches()
self.setModel(self._model)