I am trying to read a GitHub repo that Detect "Car Number Plate" and I'm running it on google colab.
but I'm receiving this error when it tries to find contours:
ValueError: not enough values to unpack (expected 3, got 2)
here's my code:
```
(new, cnts, _) = cv2.findContours(edged.copy(), cv2.RETR_LIST, cv2.CHAIN_APPROX_SIMPLE)
cnts=sorted(cnts, key = cv2.contourArea, reverse = True)[:30]
NumberPlateCnt = None
```
Thanks for any help!