pep8 fix
pep8 reported: extracttests.py:233:16: E713 test for membership should be 'not in'
This commit is contained in:
parent
d5e10c18d3
commit
91e45ba8d7
|
@ -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()
|
||||
|
||||
|
|
Loading…
Reference in New Issue