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 dd16fa2 commit 254cf13Copy full SHA for 254cf13
plotly/tools.py
@@ -784,12 +784,10 @@ def _checks(item, defaults):
784
(height + vertical_spacing) * r)
785
for c in col_seq]
786
for r in row_seq]
787
- # Initialize the grid's string representation
788
- if print_grid:
789
- grid_str = [['' for column in range(columns)] for row in range(rows)]
790
- if insets:
791
- insets_str = ['' for inset in range(len(insets))]
792
+ # [grid_ref] Initialize the grid and insets' axis-reference lists
+ grid_ref = [[None for c in range(cols)] for r in range(rows)]
+ insets_ref = [None for inset in range(len(insets))] if insets else None
793
fig = dict(layout=graph_objs.Layout()) # init layout object
794
795
# Function handling logic around 2d axis labels
0 commit comments