Replaced OrderedDict with dict by realsuayip · Pull Request #8964 · encode/django-rest-framework (original) (raw)

terencehonles added a commit to terencehonles/djangorestframework-stubs that referenced this pull request

May 12, 2023

@terencehonles

This change replaces OrderedDict with dict as done in encode/django-rest-framework#8964. This does not look like it has been released yet, but since this package requires Python 3.8 which is > Python 3.5, which was the last release to need OrderedDict, then this change should be safe to merge now. It should also be safe because dict is a superclass of OrderedDict and should not change anything for users who are using OrderedDict still.