gui/entries: remove unneeded parent

This commit is contained in:
Sebastien Bourdeauducq 2016-06-03 22:56:45 -04:00
parent 5ebd28f576
commit e9a8c4b540
1 changed files with 1 additions and 2 deletions

View File

@ -214,8 +214,7 @@ class _ExplicitScan(LayoutWidget):
float_regexp = r"(([+-]?\d+(\.\d*)?|\.\d+)([eE][+-]?\d+)?)"
regexp = "(float)?( +float)* *".replace("float", float_regexp)
self.value.setValidator(QtGui.QRegExpValidator(QtCore.QRegExp(regexp),
self.value))
self.value.setValidator(QtGui.QRegExpValidator(QtCore.QRegExp(regexp)))
self.value.setText(" ".join([str(x) for x in state["sequence"]]))
def update(text):