I am learning python with Pythonista.
Recently I am writing a script to download images from a website.
Now I can get the images and I want to preview all the images.
The documents says It is possible to pass a sequence of paths (e.g. a list), in order to preview multiple files at once.
It is working well when I pass one image filepath to quicklook() like this:
console.quicklook(img1_path)
But when I pass a squence of image files to quicklook() like this:
console.quicklook([img1_path, img2_path])
Pythonista crashes and returns to home screen.
Is there any misunderstanding in using the function here๏ผ