Skip to content

Commit 0ee44b9

Browse files
committed
MNT: Fix wrong usage for set_aspect in _MonteCarloPlots.ellipses_comparison
1 parent 3bd689c commit 0ee44b9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

rocketpy/plots/monte_carlo_plots.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -669,7 +669,7 @@ def ellipses_comparison(
669669
plt.axvline(0, color="black", linewidth=0.5)
670670
plt.xlim(*xlim)
671671
plt.ylim(*ylim)
672-
plt.aspect("equal")
672+
ax.set_aspect("equal")
673673

674674
if save:
675675
plt.savefig(

0 commit comments

Comments
 (0)