Skip to content

Commit

Permalink
Remove unused ignore statement
Browse files Browse the repository at this point in the history
  • Loading branch information
binste committed Nov 22, 2023
1 parent 7bdcecd commit 35dad83
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion altair/vegalite/v5/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -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):
Expand Down

0 comments on commit 35dad83

Please sign in to comment.