Skip to content

Commit

Permalink
ENH: bug fix for test
Browse files Browse the repository at this point in the history
  • Loading branch information
AdamTheisen committed Oct 10, 2023
1 parent 6354147 commit 1cb43b8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion act/plotting/plot.py
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@ def put_display_in_subplot(self, display, subplot_index, y_axis_index=0):
'Only single plots can be made as subplots ' + 'of another Display object!'
)
if len(np.shape(display.axes)) == 1:
my_projection = display.axes[subplot_index].name
my_projection = display.axes[0].name
else:
my_projection = display.axes[0][y_axis_index].name

Expand Down

0 comments on commit 1cb43b8

Please sign in to comment.