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 bd2132b commit 26c3714Copy full SHA for 26c3714
plotly/grid_objs/grid_objs.py
@@ -163,12 +163,12 @@ def __init__(self, columns_or_json):
163
# collect and sort all orders in case orders do not start
164
# at zero or there are jump discontinuities between them
165
all_orders = []
166
- ordered_columns = []
167
for column_name in columns_or_json['cols'].keys():
168
all_orders.append(columns_or_json['cols'][column_name]['order'])
169
all_orders.sort()
170
171
# put columns in order in a list
+ ordered_columns = []
172
for order in all_orders:
173
174
if columns_or_json['cols'][column_name]['order'] == order:
0 commit comments