pep8 reported:
extracttests.py:233:16: E713 test for membership should be 'not in'
This commit is contained in:
Thomas Jarosch 2014-12-22 14:26:57 +01:00
parent d5e10c18d3
commit 91e45ba8d7
1 changed files with 1 additions and 1 deletions

View File

@ -230,7 +230,7 @@ if filename is not None:
functionNames = []
for node in e.nodes:
functionname = trimname(node['functionName'])
if not functionname in functionNames:
if functionname not in functionNames:
functionNames.append(functionname)
functionNames.sort()