Skip to content

Commit 636859c

Browse files
committed
Fix variable
1 parent 66e9e98 commit 636859c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tutorials/euclid_access/1_Euclid_intro_MER_images.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -274,7 +274,7 @@ rows = -(-num_images // columns)
274274
fig, axes = plt.subplots(rows, columns, figsize=(4 * columns, 4 * rows), subplot_kw={'projection': WCS(final_hdulist[0].header)})
275275
axes = axes.flatten()
276276
277-
for idx, (ax, filt) in enumerate(zip(axes, filters)):
277+
for idx, (ax, filt) in enumerate(zip(axes, science_images['filters'])):
278278
image_data = final_hdulist[idx].data
279279
norm = ImageNormalize(image_data, interval=PercentileInterval(99.9), stretch=AsinhStretch())
280280
ax.imshow(image_data, cmap='gray', origin='lower', norm=norm)

0 commit comments

Comments
 (0)