summaryrefslogtreecommitdiffstats
path: root/module/gui/Collector.py
diff options
context:
space:
mode:
Diffstat (limited to 'module/gui/Collector.py')
-rw-r--r--module/gui/Collector.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/module/gui/Collector.py b/module/gui/Collector.py
index caeff4460..6b0a54d2f 100644
--- a/module/gui/Collector.py
+++ b/module/gui/Collector.py
@@ -280,7 +280,7 @@ class CollectorModel(QAbstractItemModel):
def hasChildren(self, parent=QModelIndex()):
if not parent.isValid():
return True
- return (self.rowCount(parent) > 0)
+ return self.rowCount(parent) > 0
def canFetchMore(self, parent):
return False