We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b2dbf92 commit b523cc5Copy full SHA for b523cc5
tests/mock_vws/fixtures/images.py
@@ -40,7 +40,7 @@ def _image_file(
40
green = random.randint(0, 255)
41
blue = random.randint(0, 255)
42
if color_space != 'L':
43
- pixels[i, j] = (red, green, blue)
+ pixels[j, i] = (red, green, blue)
44
image.save(image_buffer, file_format)
45
image_buffer.seek(0)
46
return image_buffer
0 commit comments