fix linting issues

This commit is contained in:
Yacine Elhamer
2023-07-11 14:52:04 +01:00
parent 12c9154f55
commit 4ee38cbe29
4 changed files with 7 additions and 7 deletions

View File

@@ -127,7 +127,6 @@ def test_rule_descriptions():
def rec(statement):
if isinstance(statement, capa.engine.Statement):
print(statement.description)
assert statement.description == statement.name.lower() + " description"
for child in statement.get_children():
rec(child)