Skip to content

Commit 964daff

Browse files
committed
rm grid_str code (taken care outside specs loop now)
1 parent 1cb0026 commit 964daff

File tree

1 file changed

+0
-17
lines changed

1 file changed

+0
-17
lines changed

plotly/tools.py

Lines changed: 0 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -947,23 +947,6 @@ def _add_domain_is_3d(fig, s_cnt, x_domain, y_domain):
947947
y_cnt += 1
948948

949949
grid_ref[r][c] = (x_label, y_label) # fill in ref
950-
if print_grid:
951-
grid_str[i][j] = '[{},{}'.format(x_label, y_label)
952-
953-
# String representation for spanned cells
954-
# TODO more general spacing over spanned cells
955-
if print_grid:
956-
if spec['colspan'] > 1:
957-
for c in range(1, spec['colspan']-1):
958-
grid_str[i][j+c] = ' '
959-
grid_str[i][j+spec['colspan']-1] = ' ]'
960-
else:
961-
grid_str[i][j] += ']'
962-
if spec['rowspan'] > 1:
963-
for r in range(1, spec['rowspan']-1):
964-
grid_str[i+r][j] = ' '
965-
for c in range(0, spec['colspan']):
966-
grid_str[i+spec['rowspan']-1][j+c] = ' ^ '
967950

968951
# Loop through insets
969952
if insets:

0 commit comments

Comments
 (0)