From 5f7d9495369684d8e07fd3cc3706e1a84ac5ed4d Mon Sep 17 00:00:00 2001 From: dangotbanned <125183946+dangotbanned@users.noreply.github.com> Date: Tue, 2 Jul 2024 19:32:16 +0100 Subject: [PATCH] chore: remove type ignore comments Utilises https://github.com/vega/altair/pull/3458 --- tests/vegalite/v5/test_api.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/vegalite/v5/test_api.py b/tests/vegalite/v5/test_api.py index 101d18ce8..bdfefa726 100644 --- a/tests/vegalite/v5/test_api.py +++ b/tests/vegalite/v5/test_api.py @@ -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)