Skip to content
Snippets Groups Projects
Commit 7919032e authored by Thomas Faraut's avatar Thomas Faraut
Browse files

. and PASS are now PASS

parent 1bc65f06
No related branches found
No related tags found
No related merge requests found
......@@ -96,7 +96,8 @@ def UnifiedPassAnnotation(SVSet):
filters = [f for f in record.filter]
# We make the assumption when a "." is present no other filter
# are present
if "." in filters:
# if no filter or "." is present in filters
if len(filters) == 0 or "." in filters:
record.filter.clear()
record.filter.add("PASS")
......
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