Skip to content

Commit 2121b1e

Browse files
Jammy2211Jammy2211
authored andcommitted
fix log 10 plot
1 parent 92b6bb9 commit 2121b1e

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

autoarray/plot/wrap/two_d/delaunay_drawer.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,9 @@ def draw_delaunay_pixels(
6767
"pixel_values input to DelaunayPlotter are None and thus cannot be plotted."
6868
)
6969

70+
if pixel_values is not None:
71+
pixel_values = np.asarray(pixel_values)
72+
7073
if ax is None:
7174
ax = plt.gca()
7275

0 commit comments

Comments
 (0)