Skip to content
Snippets Groups Projects
Commit 961eb781 authored by Stewart Martin-Haugh's avatar Stewart Martin-Haugh
Browse files

Fix flake8 warning

parent 9e43e2cd
No related branches found
No related tags found
No related merge requests found
......@@ -70,7 +70,7 @@ def createStepFilterNode(name, seq_list, dump=False):
for seq in seq_list:
filterAlg = seq.filter.Alg
log.info("createStepFilterNode: Add %s to filter node %s", filterAlg.name(), name)
if not filterAlg in filter_list:
if filterAlg not in filter_list:
filter_list.append(filterAlg)
......
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