From 9973f09a616900ab0900974da77d22b566598b5f Mon Sep 17 00:00:00 2001 From: RaNaN Date: Sat, 14 May 2011 15:37:58 +0200 Subject: improved some code style issues --- module/gui/Collector.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'module/gui/Collector.py') 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 -- cgit v1.2.3