From 99fbaf4a7f79e91b7e8ccd04de7aab82566cbebf Mon Sep 17 00:00:00 2001 From: FoamyGuy Date: Fri, 3 Jul 2020 09:34:24 -0500 Subject: [PATCH] remove unused comment --- displayio/display.py | 1 - 1 file changed, 1 deletion(-) diff --git a/displayio/display.py b/displayio/display.py index 4fc2bf7..578888a 100644 --- a/displayio/display.py +++ b/displayio/display.py @@ -343,7 +343,6 @@ class Display: _rgb_565 = self._rgb_tuple_to_rgb565(self._buffer.getpixel((x, y))) buffer[x * 2] = (_rgb_565 >> 8) & 0xff buffer[x * 2 + 1] = _rgb_565 & 0xff - #(data[i * 2] << 8) + data[i * 2 + 1] return buffer @property -- 2.49.0