Skip to content

Commit 314ebc6

Browse files
authored
Update 03-skimage-images.md
function call missing opening (
1 parent e74aa2d commit 314ebc6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

episodes/03-skimage-images.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -223,7 +223,7 @@ this case, the `.tif` extension causes the image to be saved as a TIFF.
223223
> > import skimage.transform
224224
> >
225225
> > # read in image
226-
> > image = skimage.io.imread'data/chair.jpg')
226+
> > image = skimage.io.imread('data/chair.jpg')
227227
> >
228228
> > # resize the image
229229
> > new_shape = (image.shape[0] // 10, image.shape[1] // 10, image.shape[2])

0 commit comments

Comments
 (0)