render: remove dead code

This commit is contained in:
William Ballenthin
2020-06-28 08:53:41 -06:00
parent e3245385c1
commit cad438a9bd

View File

@@ -27,10 +27,6 @@ def convert_statement_to_result_document(statement):
return {
'type': 'not',
}
elif isinstance(statement, capa.engine.Or):
return {
'type': 'or',
}
elif isinstance(statement, capa.engine.Some) and statement.count == 0:
return {
'type': 'optional'