Skip to content

Commit

Permalink
black
Browse files Browse the repository at this point in the history
  • Loading branch information
bdpedigo committed Sep 26, 2023
1 parent 505e90a commit 931d7af
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions graspologic/plot/plot.py
Original file line number Diff line number Diff line change
Expand Up @@ -1648,7 +1648,7 @@ def _plot_groups(

# top inner curves
ax_x = divider.new_vertical(size="5%", pad=0.0, pack_start=False)
ax.figure.add_axes(ax_x) # type: ignore
ax.figure.add_axes(ax_x) # type: ignore
_plot_brackets(
ax_x,
np.tile(inner_unique, len(outer_unique)),
Expand All @@ -1662,7 +1662,7 @@ def _plot_groups(
)
# side inner curves
ax_y = divider.new_horizontal(size="5%", pad=0.0, pack_start=True)
ax.figure.add_axes(ax_y) # type: ignore
ax.figure.add_axes(ax_y) # type: ignore
_plot_brackets(
ax_y,
np.tile(inner_unique, len(outer_unique)),
Expand All @@ -1679,7 +1679,7 @@ def _plot_groups(
# top outer curves
pad_scalar = 0.35 / 30 * fontsize
ax_x2 = divider.new_vertical(size="5%", pad=pad_scalar, pack_start=False)
ax.figure.add_axes(ax_x2) # type: ignore
ax.figure.add_axes(ax_x2) # type: ignore
_plot_brackets(
ax_x2,
outer_unique,
Expand All @@ -1693,7 +1693,7 @@ def _plot_groups(
)
# side outer curves
ax_y2 = divider.new_horizontal(size="5%", pad=pad_scalar, pack_start=True)
ax.figure.add_axes(ax_y2) # type: ignore
ax.figure.add_axes(ax_y2) # type: ignore
_plot_brackets(
ax_y2,
outer_unique,
Expand Down

0 comments on commit 931d7af

Please sign in to comment.