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 948bc38 commit dcc607cCopy full SHA for dcc607c
plotly/_subplots.py
@@ -757,7 +757,9 @@ def _check_hv_spacing(dimsize, spacing, name, dimvarname, dimname):
757
_configure_shared_axes(layout, grid_ref, specs, "x", shared_xaxes, row_dir, False)
758
_configure_shared_axes(layout, grid_ref, specs, "y", shared_yaxes, row_dir, False)
759
if secondary_y:
760
- _configure_shared_axes(layout, grid_ref, specs, "y", shared_yaxes, row_dir, True)
+ _configure_shared_axes(
761
+ layout, grid_ref, specs, "y", shared_yaxes, row_dir, True
762
+ )
763
764
# Build inset reference
765
# ---------------------
@@ -889,7 +891,9 @@ def _check_hv_spacing(dimsize, spacing, name, dimvarname, dimname):
889
891
return figure
890
892
893
-def _configure_shared_axes(layout, grid_ref, specs, x_or_y, shared, row_dir, secondary_y):
894
+def _configure_shared_axes(
895
+ layout, grid_ref, specs, x_or_y, shared, row_dir, secondary_y
896
+):
897
rows = len(grid_ref)
898
cols = len(grid_ref[0])
899
0 commit comments