fix lint errors

This commit is contained in:
Milan Svoboda 2015-12-26 18:04:01 +01:00
parent 013df51fd2
commit a652688566

View File

@ -150,7 +150,7 @@ class CompletionFilterModel(QSortFilterProxyModel):
if not data:
continue
else:
return self.patternre.search(data.casefold()) == True
return self.patternre.search(data.casefold())
return False
def intelligentLessThan(self, lindex, rindex):