Skip to content

Commit a3cbbc4

Browse files
committed
Fix ImageCollection call on Windows
1 parent 3eb24a7 commit a3cbbc4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tutorial/01_images_are_arrays.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -199,7 +199,7 @@ plt.imshow(image);
199199
We also have the ability to load multiple images from a folder:
200200

201201
```{code-cell} ipython3
202-
ic = ski.io.ImageCollection('./*.png:./data/*.png:./data/*.jpg')
202+
ic = ski.io.ImageCollection(['./*.png', './data/*.png', './data/*.jpg'])
203203
204204
print('Type:', type(ic))
205205

0 commit comments

Comments
 (0)