Skip to content

Commit d450816

Browse files
committed
Fix
1 parent 0622752 commit d450816

File tree

1 file changed

+2
-2
lines changed
  • package/visualization/plot_empirical_attainment_surface

1 file changed

+2
-2
lines changed

package/visualization/plot_empirical_attainment_surface/_wrapper.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ def plot_empirical_attainment_surface(
2828
surfs = _get_empirical_attainment_surfaces(study_list, levels, log_scale_inds)
2929
plotter = EmpiricalAttainmentFuncPlot()
3030
if len(attainment_ratios) == 1:
31-
ax = plotter.plot_surface(
31+
plotter.plot_surface(
3232
ax,
3333
surfs[0],
3434
color=color,
@@ -75,7 +75,7 @@ def plot_multiple_empirical_attainment_surfaces(
7575
plotter = EmpiricalAttainmentFuncPlot()
7676
if len(attainment_ratios) == 1:
7777
surfs_list = [surfs[0] for surfs in surfs_list]
78-
ax = plotter.plot_multiple_surface(
78+
plotter.plot_multiple_surface(
7979
ax,
8080
surfs_list,
8181
colors=colors,

0 commit comments

Comments
 (0)