remove unneded 'color' argument

This commit is contained in:
txoof 2020-01-26 12:59:03 +01:00
commit 5c742fa948
8 changed files with 8 additions and 8 deletions

View file

@ -288,7 +288,7 @@ class EPD:
self.send_data(image[i + j * linewidth])
self.TurnOnDisplay()
def Clear(self, color):
def Clear(self):
if self.width%8 == 0:
linewidth = int(self.width/8)
else: