summaryrefslogtreecommitdiff
path: root/Params/__init__.py
diff options
context:
space:
mode:
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))