Skip to content

Commit 656786b

Browse files
committed
Update mypy, fix associated errors
1 parent 9b5ff62 commit 656786b

2 files changed

Lines changed: 131 additions & 89 deletions

File tree

altair/vegalite/v6/api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5170,7 +5170,7 @@ def _needs_name(subchart: ChartType) -> bool:
51705170
return False
51715171

51725172
# Variable parameters won't receive a views property.
5173-
return not all(isinstance(p, core.VariableParameter) for p in subchart.params) # type: ignore
5173+
return not all(isinstance(p, core.VariableParameter) for p in subchart.params)
51745174

51755175

51765176
# Convert SelectionParameters to TopLevelSelectionParameters with a views property.

0 commit comments

Comments
 (0)