remove OrderedDict
Dictionaries are ordered as of Python 3.7 (see, e.g., here) so the calls to OrderedDict
are no longer needed. This removes all instances of OrderedDict
.
Dictionaries are ordered as of Python 3.7 (see, e.g., here) so the calls to OrderedDict
are no longer needed. This removes all instances of OrderedDict
.