Skip to content

Commit

Permalink
fix(typing): Use typing.List
Browse files Browse the repository at this point in the history
`list` fails on 3.8
  • Loading branch information
dangotbanned committed May 31, 2024
1 parent a09c13c commit e7be069
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 @@ -481,7 +481,7 @@ def _condition_to_selection(


class _Conditions(_TypedDict, total=False):
condition: _Required[list[_ConditionType]]
condition: _Required[List[_ConditionType]]
value: Any


Expand Down

0 comments on commit e7be069

Please sign in to comment.