removed unnecessary variable assignment

ironpython
András Veres-Szentkirályi 2013-07-02 11:12:09 +02:00
rodzic 6a4d8bf679
commit b348a8da0c
1 zmienionych plików z 1 dodań i 2 usunięć

Wyświetl plik

@ -9,10 +9,9 @@ class ColorSSTV(GrayscaleSSTV):
RED, GREEN, BLUE = range(3)
def encode_line(self, line):
cs = self.COLOR_SEQ
msec_pixel = self.SCAN / self.WIDTH
image = self.image.load()
for index in cs:
for index in self.COLOR_SEQ:
for item in self.before_channel(index):
yield item
for col in xrange(self.WIDTH):