black and lint

This commit is contained in:
Liz 2024-03-11 16:00:24 -04:00
parent 022317d470
commit feb08ef35e

View file

@ -245,7 +245,7 @@ class Matrix8x8x2(Matrix8x8):
super()._pixel(y, x, (color >> 1) & 0x01)
super()._pixel(y + 8, x, (color & 0x01))
else:
return super()._pixel(y, x) << 1 | super()._pixel(y + 8, x)
return super()._pixel(y, x) << 1 | super()._pixel(y + 8, x)
return None
def fill(self, color: int) -> None: