Skip to content

Commit

Permalink
chore(ruff): Ignore unused variables
Browse files Browse the repository at this point in the history
  • Loading branch information
dangotbanned committed Sep 4, 2024
1 parent 331a52e commit 633c0c2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/vegalite/v5/test_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -772,7 +772,7 @@ def test_when_then_interactive() -> None:
# NOTE: A stand-in for a `SchemaBase` that we don't want to accept
then_fail: alt.Chart = alt.Chart(source)

result_pass = chart_encode(
result_pass = chart_encode( # noqa: F841
col_0=then_pass,
col_1=then_pass,
col_2=then_pass,
Expand All @@ -782,7 +782,7 @@ def test_when_then_interactive() -> None:
col_6=then_pass,
)

result_fail = chart_encode(
result_fail = chart_encode( # noqa: F841
col_0=then_fail,
col_1=then_fail,
col_2=then_fail,
Expand Down

0 comments on commit 633c0c2

Please sign in to comment.