From a773c9772e1a96cfa3b9b9ec7809b9ea7f4a005b Mon Sep 17 00:00:00 2001 From: dangotbanned <125183946+dangotbanned@users.noreply.github.com> Date: Sun, 15 Sep 2024 14:50:12 +0100 Subject: [PATCH] chore: Remove now-fixed type ignore --- tests/vegalite/v5/test_api.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/vegalite/v5/test_api.py b/tests/vegalite/v5/test_api.py index 324fee58d..d1e2dc603 100644 --- a/tests/vegalite/v5/test_api.py +++ b/tests/vegalite/v5/test_api.py @@ -795,7 +795,7 @@ def test_when_then_interactive() -> None: .encode( x="IMDB_Rating:Q", y="Rotten_Tomatoes_Rating:Q", - color=alt.when(predicate).then(alt.value("grey")), # type: ignore[arg-type] + color=alt.when(predicate).then(alt.value("grey")), ) ) assert chart.interactive()