Skip to content

Commit

Permalink
ignore lint warning in tests
Browse files Browse the repository at this point in the history
  • Loading branch information
keelerm84 committed Jul 12, 2024
1 parent f172070 commit b262e24
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/impl/test_context_converter.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ def test_create_context_with_invalid_key(context_converter: EvaluationContextCon


def test_create_context_with_invalid_targeting_key(context_converter: EvaluationContextConverter, caplog):
context = EvaluationContext(False)
context = EvaluationContext(False) # type: ignore[arg-type]
ld_context = context_converter.to_ld_context(context)

assert ld_context.valid is False
Expand Down

0 comments on commit b262e24

Please sign in to comment.