Skip to content

Commit

Permalink
Disable erroneous pylint warning
Browse files Browse the repository at this point in the history
  • Loading branch information
teiesti committed Feb 22, 2024
1 parent 0901716 commit cf6617c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_assertion.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ def frame():
ctl.ground([("base", [])])

def test(positive, negative):
for model in ctl.solve(yield_=True):
for model in ctl.solve(yield_=True): # pylint: disable=not-an-iterable
for assertion in positive:
assert assertion.holds_for(model)
for assertion in negative:
Expand Down

0 comments on commit cf6617c

Please sign in to comment.