Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Type hints: Simplify to improve user experiences #3307

Merged
merged 10 commits into from
Jan 9, 2024
2 changes: 1 addition & 1 deletion altair/vegalite/v5/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -431,7 +431,7 @@ def param(
name=parameter.name,
bind=bind,
value=value,
expr=expr, # type: ignore[arg-type]
expr=expr,
**kwds,
)
parameter.param_type = "variable"
Expand Down
103,078 changes: 46,212 additions & 56,866 deletions altair/vegalite/v5/schema/channels.py

Large diffs are not rendered by default.

55,443 changes: 23,914 additions & 31,529 deletions altair/vegalite/v5/schema/core.py

Large diffs are not rendered by default.

Loading