Zidong Fang
Results
2
issues of
Zidong Fang
It should add `classpath:` before each script ```yml spring: datasource: schema: - classpath:schema.sql ```
### What did you do? ```python from PIL import Image import io image_1 = '/Users/fangzidong/git_repo/mmwrastra/debug_data/debug_gif_img/no_palette.gif' with open(image_1, 'rb') as f: image_bytes = f.read() image = Image.open(io.BytesIO(image_bytes)) image.show() ``` ### What...
GIF