Removed unused variable

This commit is contained in:
Andrew Murray 2017-03-03 21:05:41 +11:00
parent 1fcdf6a2db
commit 18fea70b51

View File

@ -343,7 +343,7 @@ class TestImageCms(PillowTestCase):
]
chans = []
bands = ImageMode.getmode(mode).bands
for band_ndx, band in enumerate(bands):
for band_ndx in range(len(bands)):
channel_type = 'L' # 8-bit unorm
channel_pattern = hopper(channel_type)