mirror of
https://github.com/python-pillow/Pillow.git
synced 2025-01-13 10:46:16 +03:00
Removed unused variable
This commit is contained in:
parent
1fcdf6a2db
commit
18fea70b51
|
@ -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)
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user