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
As per PEP 585, use of typing for type hints is deprecated. In most cases, it should be replaced with collections.abc, for instance replacing typing.Mapping with collections.abc.Mapping. PEP spec includes a full list of appropriate replacements.
The text was updated successfully, but these errors were encountered:
james-whiteside
changed the title
Update Python driver to remove deprecated type hints
Update Python driver to remove deprecated type hint syntax
Mar 18, 2024
As per PEP 585, use of
typing
for type hints is deprecated. In most cases, it should be replaced withcollections.abc
, for instance replacingtyping.Mapping
withcollections.abc.Mapping
. PEP spec includes a full list of appropriate replacements.The text was updated successfully, but these errors were encountered: