Skip to content

Commit

Permalink
flake8
Browse files Browse the repository at this point in the history
  • Loading branch information
williballenthin committed Oct 17, 2023
1 parent 8ee97ac commit cb5fa36
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_rules.py
Original file line number Diff line number Diff line change
Expand Up @@ -420,8 +420,8 @@ def test_rules_flavor_filtering():


def test_meta_scope_keywords():
static_scopes = list(sorted(map(lambda e: e.value, capa.rules.STATIC_SCOPES)))
dynamic_scopes = list(sorted(map(lambda e: e.value, capa.rules.DYNAMIC_SCOPES)))
static_scopes = sorted([e.value for e in capa.rules.STATIC_SCOPES])
dynamic_scopes = sorted([e.value for e in capa.rules.DYNAMIC_SCOPES])

for static_scope in static_scopes:
for dynamic_scope in dynamic_scopes:
Expand Down

0 comments on commit cb5fa36

Please sign in to comment.