We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 47174e9 commit 61ea742Copy full SHA for 61ea742
dash/_grouping.py
@@ -31,7 +31,6 @@ def flatten_grouping(grouping, schema=None):
31
"""
32
stack = []
33
result = []
34
- pushed_validate = False
35
36
# Avoid repeated recursive Python calls by using an explicit stack
37
push = stack.append
@@ -42,7 +41,6 @@ def flatten_grouping(grouping, schema=None):
42
41
schema = grouping
43
else:
44
validate_grouping(grouping, schema)
45
- pushed_validate = True # Just for clarity; not strictly necessary
46
47
push((grouping, schema))
48
while stack:
0 commit comments