Skip to content

Commit

Permalink
[processing] fix method signature
Browse files Browse the repository at this point in the history
  • Loading branch information
alexbruy authored and nyalldawson committed May 11, 2018
1 parent 1ba34dc commit 33cfed2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions python/plugins/processing/gui/enummodelerwidget.py
Expand Up @@ -110,5 +110,5 @@ def setDefault(self, index):
if item:
item.setCheckState(Qt.Checked)

def setAllowMultiple(self):
self.chkAllowMultiple.setChecked(True)
def setAllowMultiple(self, allowMultiple):
self.chkAllowMultiple.setChecked(allowMultiple)

0 comments on commit 33cfed2

Please sign in to comment.