Skip to content

Commit

Permalink
chore: remove type ignore comments
Browse files Browse the repository at this point in the history
Utilises vega#3458
  • Loading branch information
dangotbanned committed Jul 2, 2024
1 parent b238aef commit 5f7d949
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 @@ -372,8 +372,8 @@ def test_when_then_when_then_otherwise() -> None:
.encode(
x="a:O",
y="b:Q",
fillOpacity=alt.when(select).then(1).otherwise(0.3), # type: ignore
strokeWidth=actual_stroke, # type: ignore
fillOpacity=alt.when(select).then(1).otherwise(0.3),
strokeWidth=actual_stroke,
)
.configure_scale(bandPaddingInner=0.2)
.add_params(select, highlight)
Expand Down

0 comments on commit 5f7d949

Please sign in to comment.