I\'m making a web app using Flask, and I want to resize the images that are uploaded. I\'m using PIL to do this, but an error is thrown.
The process to do it is like thi
img = img.resize(300, 300)
=> img = img.resize((300,300))