Skip to content

Commit

Permalink
Fix get_cmap("jet") in nmlliteui
Browse files Browse the repository at this point in the history
  • Loading branch information
pgleeson committed May 29, 2024
1 parent 28c3250 commit 1caa73a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion neuromllite/gui/NMLliteUI.py
Original file line number Diff line number Diff line change
Expand Up @@ -1044,7 +1044,7 @@ def replotSimResults(self):
ax_heatmap.clear()

if len(heat_array) > 0:
cm = matplotlib.cm.get_cmap("jet")
cm = matplotlib.pyplot.get_cmap("jet")
hm = ax_heatmap.pcolormesh(heat_array, cmap=cm)
# cbar = ax_heatmap.colorbar(im)

Expand Down

0 comments on commit 1caa73a

Please sign in to comment.