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.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/django/utils/datastructures.py b/django/utils/datastructures.py
index 769637f1d3..b42f674eb0 100644
--- a/django/utils/datastructures.py
+++ b/django/utils/datastructures.py
@@ -1,5 +1,6 @@
import copy
from collections import OrderedDict
+from contextlib import suppress
class OrderedSet:
@@ -18,10 +19,8 @@ class OrderedSet:
del self.dict[item]
def discard(self, item):
- try:
+ with suppress(KeyError):
self.remove(item)
- except KeyError:
- pass
def __iter__(self):
return iter(self.dict)