diff --git a/capa/render/__init__.py b/capa/render/__init__.py index e79363dc..dbe13c54 100644 --- a/capa/render/__init__.py +++ b/capa/render/__init__.py @@ -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'