X-Git-Url: https://git.ayoreis.com/hackapet/Adafruit_Blinka_Displayio.git/blobdiff_plain/5856ada1d53be9d839149d439ff1b10791607320..efaf6062f9f5c55fba6d15f4702913d330332c98:/displayio/colorconverter.py diff --git a/displayio/colorconverter.py b/displayio/colorconverter.py index a93da2d..f853653 100644 --- a/displayio/colorconverter.py +++ b/displayio/colorconverter.py @@ -135,16 +135,3 @@ class ColorConverter: if not isinstance(value, bool): raise ValueError("Value should be boolean") self._dither = value - - @property - def rgba(self): - """When true the color converter returns a 4-value - RGBA tuple rather than an integer - """ - return self._rgba - - @rgba.setter - def rgba(self, value): - if not isinstance(value, bool): - raise ValueError("Value should be boolean") - self._rgba = value