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
OrderedDict should be imported from collections rather than typing.
The OrderedDict in typing is only used for type annotations and has been marked as deprecated since version 3.9.
OrderedDict
should be imported fromcollections
rather thantyping
.The
OrderedDict
intyping
is only used for type annotations and has been marked as deprecated since version 3.9.https://docs.python.org/3/library/typing.html#typing.OrderedDict
https://docs.python.org/3/library/collections.html#ordereddict-objects
The text was updated successfully, but these errors were encountered: