diff options
author | Jussi Pakkanen <jpakkane@gmail.com> | 2013-10-23 21:07:59 +0300 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2013-10-23 21:07:59 +0300 |
commit | 34d673984d603092d0710a372b8656561d884ae8 (patch) | |
tree | 6839ebb5f2f2a3028a7297320800980be1d9073e /mesongui.py | |
parent | 73d35dcaea977162c9ef5b193ad8470ae8244a48 (diff) | |
download | meson-34d673984d603092d0710a372b8656561d884ae8.zip meson-34d673984d603092d0710a372b8656561d884ae8.tar.gz meson-34d673984d603092d0710a372b8656561d884ae8.tar.bz2 |
Remove duplicated function.
Diffstat (limited to 'mesongui.py')
-rwxr-xr-x | mesongui.py | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/mesongui.py b/mesongui.py index f0cdf1a..77853de 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() |