Closed rohanbobby01 closed 1 year ago
To prevent IndexError
To view an image from a batch, random.randint(0, 32) was used, but it will give an index error if it returns 32, so changed it to random.randint(0, 31)
Good catch! Thank you :)
To prevent IndexError