You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I think line 32 and 68 have to be change
from
assert os.path.exists(roi_rec['image']), '%s does not exist'.format(roi_rec['image'])
to
assert os.path.exists(roi_rec['image']), '{} does not exist'.format(roi_rec['image'])
.
If the problem just regards to python version, i am sorry. :) ;;
The text was updated successfully, but these errors were encountered:
I think line 32 and 68 have to be change
from
assert os.path.exists(roi_rec['image']), '%s does not exist'.format(roi_rec['image'])
to
assert os.path.exists(roi_rec['image']), '{} does not exist'.format(roi_rec['image'])
.
If the problem just regards to python version, i am sorry. :) ;;
The text was updated successfully, but these errors were encountered: