From 34d673984d603092d0710a372b8656561d884ae8 Mon Sep 17 00:00:00 2001 From: Jussi Pakkanen Date: Wed, 23 Oct 2013 21:07:59 +0300 Subject: [PATCH] Remove duplicated function. --- mesongui.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/mesongui.py b/mesongui.py index f0cdf1a19..77853de01 100755 --- a/mesongui.py +++ b/mesongui.py @@ -59,9 +59,6 @@ class PathModel(QAbstractItemModel): def index(self, row, column, parent): return self.createIndex(row, column) - def index(self, row, column, parent): - return self.createIndex(row, column) - def data(self, index, role): if role != PyQt5.QtCore.Qt.DisplayRole: return QVariant()