You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It seems like python < 3.10 is not supported by the library. The issue is with the | operator in the type hints. I believe that operator for type hints was introduced in python 3.10. Also tuple in type hints were introduced in python 3.9.
So if you want to support more python versions you could use Union, Optional and Tuple from the typing library instead. It would definitely help me, and perhaps others as well.
The text was updated successfully, but these errors were encountered:
Hi,
Thanks for this great library!
It seems like python < 3.10 is not supported by the library. The issue is with the | operator in the type hints. I believe that operator for type hints was introduced in python 3.10. Also tuple in type hints were introduced in python 3.9.
So if you want to support more python versions you could use Union, Optional and Tuple from the typing library instead. It would definitely help me, and perhaps others as well.
The text was updated successfully, but these errors were encountered: