summaryrefslogtreecommitdiff
path: root/ricky/param/option.py
diff options
context:
space:
mode:
Diffstat (limited to 'ricky/param/option.py')
-rw-r--r--ricky/param/option.py16
1 files changed, 0 insertions, 16 deletions
diff --git a/ricky/param/option.py b/ricky/param/option.py
deleted file mode 100644
index 0cbd505..0000000
--- a/ricky/param/option.py
+++ /dev/null
@@ -1,16 +0,0 @@
-"""
-Base option class...essentially a dictionary
-but attributes can be accessed with a dot
-"""
-
-
-class Option(dict):
- def __init__(self, **kwargs):
- super(Option, self).__init__(**kwargs)
-
- def __getattr__(self, attr):
- return self.get(attr)
-
- __setattr__ = dict.__setitem__
-
- __delattr__ = dict.__delitem__