Skip to content
Snippets Groups Projects
Commit a6788c22 authored by Edward Moyse's avatar Edward Moyse
Browse files

Fix for flake8 test

parent 69f7eabc
No related merge requests found
......@@ -253,7 +253,8 @@ class ComponentAccumulator(object):
(comp.getJobOptName(),oldprop.getFullName(),newprop.getFullName()))
elif isinstance(oldprop,PublicToolHandleArray):
for newtool in newprop:
if newtool not in oldprop: oldprop+=[newtool,]
if newtool not in oldprop:
oldprop+=[newtool,]
continue
elif isinstance(oldprop,ConfigurableAlgTool):
self._deduplicateComponent(oldprop,newprop)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment