tensorflow-yolov3 icon indicating copy to clipboard operation
tensorflow-yolov3 copied to clipboard

Found a bug in mAP/extra/remove_space.py

Open Chrisa142857 opened this issue 5 years ago • 0 comments

Hello!

I've found and fixed a bug in line 38 in mAP/extra/remove_space.py. It's not working when I forcing the yes confirmation on yes/no query using --yes argument. I change

    if bypass:
        break

to

    if bypass:
        return True # if `force yes confirmation` return True

That's all! Peace~

Chrisa142857 avatar Oct 24 '20 03:10 Chrisa142857