summaryrefslogtreecommitdiff
path: root/ricky/param/option.py
diff options
context:
space:
mode:
authoryo mama <pepper@scannerjammer.com>2015-10-10 02:54:41 -0700
committeryo mama <pepper@scannerjammer.com>2015-10-10 02:54:41 -0700
commitb02cc8d49513cdcc54f4421e71db3512354d4e2e (patch)
tree2a3a83e1f99a1108eedb703d2cf8ed43613b2c22 /ricky/param/option.py
parent52d85ddcb9c934ec4dc0e890633762bfa2ff51f5 (diff)
renamed options to selections
Diffstat (limited to 'ricky/param/option.py')
-rw-r--r--ricky/param/option.py9
1 files changed, 0 insertions, 9 deletions
diff --git a/ricky/param/option.py b/ricky/param/option.py
deleted file mode 100644
index 89bd5db..0000000
--- a/ricky/param/option.py
+++ /dev/null
@@ -1,9 +0,0 @@
-class Option(dict):
- def __init__(self, **kwargs):
- super(Option, self).__init__(**kwargs)
- self.value = kwargs["value"]
- self.weight = kwargs["weight"]
- def __getattr__(self, attr):
- return self.get(attr)
- __setattr__= dict.__setitem__
- __delattr__= dict.__delitem__