Skip to content

Commit 592a03a

Browse files
committed
fix: colormap issue
1 parent f441764 commit 592a03a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

truelearn/utils/visualisations/_bubble_plotter.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ def plot(
8585
plt.xlim(-lim, lim)
8686
plt.ylim(-lim, lim)
8787

88-
cmap = colormaps.get_cmap("Greens_r")
88+
cmap = colormaps["Greens_r"]
8989

9090
# Normalize data range to colormap range
9191
norm = colors.Normalize(vmin=min(variances) - 0.05, vmax=max(variances) + 0.05)

0 commit comments

Comments
 (0)