summaryrefslogtreecommitdiff
path: root/ricky/param/color.py
diff options
context:
space:
mode:
Diffstat (limited to 'ricky/param/color.py')
-rw-r--r--ricky/param/color.py8
1 files changed, 0 insertions, 8 deletions
diff --git a/ricky/param/color.py b/ricky/param/color.py
index 4d88b90..2654914 100644
--- a/ricky/param/color.py
+++ b/ricky/param/color.py
@@ -10,14 +10,6 @@ class Color(Param):
def from_rgb(cls, r, g, b):
return cls(value="rgb({},{},{})".format(r, g, b))
- @property
- def value(self):
- return super(Color, self).value_get()
-
- @value.setter
- def value(self, value):
- self._value = value
-
def randomize(self):
self.value = "rgb(%s,%s,%s)" % (
random.randint(0, 255),