Skip to content

Commit

Permalink
fix(plots): unpack width ratios in rainbow plot
Browse files Browse the repository at this point in the history
Signed-off-by: Cameron Smith <cameron.ray.smith@gmail.com>
  • Loading branch information
cameronraysmith committed Sep 6, 2024
1 parent b602d2b commit 40b57d2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pyrovelocity/plots/_rainbow.py
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ def create_rainbow_figure(
figure=fig,
width_ratios=[
0.21,
[1] * (horizontal_panels - 1),
*([1] * (horizontal_panels - 1)),
],
wspace=0.2,
hspace=0.2,
Expand Down

0 comments on commit 40b57d2

Please sign in to comment.