Skip to content

Commit

Permalink
fix(typing): Add missing float to IntoExpression alias (vega#3611)
Browse files Browse the repository at this point in the history
  • Loading branch information
dangotbanned authored Sep 25, 2024
1 parent 712680b commit 02e8c34
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion altair/expr/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -237,4 +237,4 @@ def __repr__(self) -> str:
return f"{self.group}[{self.name!r}]"


IntoExpression: TypeAlias = Union[bool, None, str, OperatorMixin, Dict[str, Any]]
IntoExpression: TypeAlias = Union[bool, None, str, float, OperatorMixin, Dict[str, Any]]

0 comments on commit 02e8c34

Please sign in to comment.