Skip to content

Commit 3ca8328

Browse files
committed
fix: typo, store cached array not in array
1 parent 88a4c49 commit 3ca8328

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/e3sm_quickview/plugins/eam_projection.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -554,7 +554,7 @@ def RequestData(self, request, inInfo, outInfo):
554554
if cached_array and cached_array.GetMTime() >= in_array.GetMTime():
555555
# this scalar has been seen before
556556
# simply add a reference in the outData
557-
out_cell_data.AddArray(in_array)
557+
out_cell_data.AddArray(cached_array)
558558
else:
559559
# this scalar is new
560560
# we have to fill in the additional cells resulted from the clip

0 commit comments

Comments
 (0)