]> Repositories - hackapet/Adafruit_Blinka_Displayio.git/blobdiff - displayio/_colorspace.py
Update to pyproject.toml
[hackapet/Adafruit_Blinka_Displayio.git] / displayio / _colorspace.py
index 5aacb242900e767c5715532ea9e80fecefa63ae7..42ab1481947df6c8a2b4ae341b3a0d6382ee8474 100644 (file)
@@ -18,7 +18,7 @@ displayio for Blinka
 
 """
 
-__version__ = "0.0.0-auto.0"
+__version__ = "0.0.0+auto.0"
 __repo__ = "https://github.com/adafruit/Adafruit_Blinka_displayio.git"
 
 
@@ -26,8 +26,8 @@ class Colorspace:
     """The colorspace for a ColorConverter to operate in."""
 
     # pylint: disable=too-few-public-methods
-    def __init__(self, colorspace):
-        self._type = colorspace
+    def __init__(self, colorspace_type):
+        self._colorspace_type = colorspace_type
 
 
 Colorspace.RGB888 = Colorspace("RGB888")