summaryrefslogtreecommitdiff
path: root/django/utils/datastructures.py
diff options
context:
space:
mode:
Diffstat (limited to 'django/utils/datastructures.py')
-rw-r--r--django/utils/datastructures.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/django/utils/datastructures.py b/django/utils/datastructures.py
index bb8166a734..a89af1780b 100644
--- a/django/utils/datastructures.py
+++ b/django/utils/datastructures.py
@@ -2,7 +2,7 @@ import copy
from collections import OrderedDict
-class OrderedSet(object):
+class OrderedSet:
"""
A set which keeps the ordering of the inserted items.
Currently backs onto OrderedDict.