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
If using Python >=3.7, use built-in dict as OrderedDict (#248)
If using Python >=3.7, use built-in dict as OrderedDict
Since dictionaries are specified to preserve insertion order in
Python 3.7 and up (see https://docs.python.org/3/whatsnew/3.7.html),
it seems simplest and most performant to use the built-in type
where possible.
0 commit comments