summaryrefslogtreecommitdiff
path: root/Params/__init__.py
diff options
context:
space:
mode:
authoryo mama <pepper@scannerjammer.com>2015-09-13 23:42:58 -0700
committeryo mama <pepper@scannerjammer.com>2015-09-13 23:42:58 -0700
commit5628ec9b1a2dc329c4d144c694f379ef5c055531 (patch)
tree6d3a85f74ff99c8d6c571c53a56e5d6d4f83f6d8 /Params/__init__.py
parent20606739f1357ec3e21f244523816754fc58572d (diff)
ok cleaning up the last few modules
Diffstat (limited to 'Params/__init__.py')
-rw-r--r--Params/__init__.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/Params/__init__.py b/Params/__init__.py
index 2c94460..dc8fbfa 100644
--- a/Params/__init__.py
+++ b/Params/__init__.py
@@ -66,6 +66,8 @@ class Params(object):
elif value_type == "enum":
if value not in enum_values:
raise ValueError
+ elif value_type == "json":
+ pass
self.__setattr__(key, value)
except Exception as e:
self.err_warn("key: %s value: %s" % (key, value), error=str(e))