it supposed to trigger "ImageNotFoundException"
def functionwithimage(hebele):
try:
im = Image.open(hebele)
a=pyautogui.locateOnScreen(hebele)
print("There it is!")
except pyautogui.ImageNotFoundException:
print("i cannot find image on these lands!")
functionwithimage('Bank.png')