Skip to content

Commit 4a6b718

Browse files
committed
remove i, j indices
1 parent 46b6c73 commit 4a6b718

File tree

1 file changed

+0
-6
lines changed

1 file changed

+0
-6
lines changed

plotly/tools.py

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -880,13 +880,11 @@ def _add_domain_is_3d(fig, s_cnt, x_domain, y_domain):
880880
scene = graph_objs.Scene(domain={'x': x_domain, 'y': y_domain})
881881
fig['layout'][scene_name] = scene
882882

883-
i = j = 0 # subplot grid indices
884883
x_cnt = y_cnt = s_cnt = 1 # subplot axis/scene counters
885884

886885
# Loop through specs
887886
for row, spec_row in enumerate(specs):
888887

889-
j = 0 # start at leftmost grid cell for each spec_row
890888

891889
for col, spec in enumerate(spec_row):
892890

@@ -955,10 +953,6 @@ def _add_domain_is_3d(fig, s_cnt, x_domain, y_domain):
955953
for c in range(0, spec['colspan']):
956954
grid_str[i+spec['rowspan']-1][j+c] = ' ^ '
957955

958-
j += 1 # move right by one column
959-
960-
i += 1 # move up by one row
961-
962956
# Loop through insets
963957
if insets:
964958
for i_inset, inset in enumerate(insets):

0 commit comments

Comments
 (0)