diff options
| author | pepperpepperpepper <pepper@scannerjammer.com> | 2015-12-07 17:40:16 -0800 |
|---|---|---|
| committer | pepperpepperpepper <pepper@scannerjammer.com> | 2015-12-07 17:40:16 -0800 |
| commit | 14ef118d2c5508d69c015f699cde5783175d8e18 (patch) | |
| tree | c4c3a8dde462ac5e446d92fcc66124f193d46a4b /ricky/param/option.py | |
| parent | cd48eb7a6fd7c1e4a94846c3346d7b4cef6a6c50 (diff) | |
removed unused option class
Diffstat (limited to 'ricky/param/option.py')
| -rw-r--r-- | ricky/param/option.py | 16 |
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__ |
