Closed joealcorn closed 10 months ago
Dicts are unordered, so I think we should encourage people to use OrderedDict instead. I think this is preferable to accepting a list as suggested in #109 because it keeps things simple.
OrderedDict
Dictionaries are now ordered, in Python 3.6 and later.
A
Dicts are unordered, so I think we should encourage people to use
OrderedDict
instead. I think this is preferable to accepting a list as suggested in #109 because it keeps things simple.