From 35dad837ae899cbb333d36403701a31280035a7d Mon Sep 17 00:00:00 2001 From: Stefan Binder Date: Wed, 22 Nov 2023 19:35:07 +0100 Subject: [PATCH] Remove unused ignore statement --- altair/vegalite/v5/api.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/altair/vegalite/v5/api.py b/altair/vegalite/v5/api.py index 75df2e113..e5f7f71c9 100644 --- a/altair/vegalite/v5/api.py +++ b/altair/vegalite/v5/api.py @@ -1231,7 +1231,7 @@ def __and__(self, other) -> "VConcatChart": if not isinstance(other, TopLevelMixin): raise ValueError("Only Chart objects can be concatenated.") # Too difficult to type check this - return vconcat(self, other) # type: ignore[arg-type] + return vconcat(self, other) def __or__(self, other) -> "HConcatChart": if not isinstance(other, TopLevelMixin):