Skip to content

Commit

Permalink
fixed plotting error
Browse files Browse the repository at this point in the history
  • Loading branch information
Meganton committed Dec 20, 2024
1 parent 53541bf commit cef523b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion neps/plot/plotting.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ def _get_fig_and_axs(
)

fig.tight_layout(pad=2.0, h_pad=2.5) # type: ignore
for ax in axs.flat:
for ax in fig.get_axes():
ax.spines["top"].set_visible(False)
ax.spines["right"].set_visible(False)

Expand Down

0 comments on commit cef523b

Please sign in to comment.