daca2-report.py: fixed pep8 warning 'E713 test for membership should be 'not in''
This commit is contained in:
parent
fe1ae7240a
commit
22db3d77f7
|
@ -133,7 +133,7 @@ for lib in (False, True):
|
|||
if messageId == 'syntaxError':
|
||||
continue
|
||||
totalNumber[severity] = totalNumber[severity] + 1
|
||||
if not messageId in categories[severity]:
|
||||
if messageId not in categories[severity]:
|
||||
categories[severity].append(messageId)
|
||||
|
||||
mainpage.write(
|
||||
|
|
Loading…
Reference in New Issue