summaryrefslogtreecommitdiff
path: root/django/utils/tree.py
diff options
context:
space:
mode:
Diffstat (limited to 'django/utils/tree.py')
-rw-r--r--django/utils/tree.py8
1 files changed, 1 insertions, 7 deletions
diff --git a/django/utils/tree.py b/django/utils/tree.py
index def1c78577..d13883a00e 100644
--- a/django/utils/tree.py
+++ b/django/utils/tree.py
@@ -76,7 +76,7 @@ class Node:
def __hash__(self):
return hash((self.__class__, self.connector, self.negated, *make_hashable(self.children)))
- def add(self, data, conn_type, squash=True):
+ def add(self, data, conn_type):
"""
Combine this tree and the data represented by data using the
connector conn_type. The combine is done by squashing the node other
@@ -87,15 +87,9 @@ class Node:
Return a node which can be used in place of data regardless if the
node other got squashed or not.
-
- If `squash` is False the data is prepared and added as a child to
- this tree without further logic.
"""
if self.connector == conn_type and data in self.children:
return data
- if not squash:
- self.children.append(data)
- return data
if self.connector == conn_type:
# We can reuse self.children to append or squash the node other.
if (isinstance(data, Node) and not data.negated and