summaryrefslogtreecommitdiff
path: root/Param/Json
diff options
context:
space:
mode:
authoryo mama <pepper@scannerjammer.com>2015-09-21 14:20:13 -0700
committeryo mama <pepper@scannerjammer.com>2015-09-21 14:20:13 -0700
commitb29b0ec5f11dd66434cbdfba5287c4777d7f8ac9 (patch)
treef02f45661bdab855d8392e14ba6448546586bf37 /Param/Json
parent8f2230b7c866320e3839d6812b98b8370a7ec5d9 (diff)
new file structure
Diffstat (limited to 'Param/Json')
-rw-r--r--Param/Json/__init__.py8
1 files changed, 0 insertions, 8 deletions
diff --git a/Param/Json/__init__.py b/Param/Json/__init__.py
deleted file mode 100644
index 28a7126..0000000
--- a/Param/Json/__init__.py
+++ /dev/null
@@ -1,8 +0,0 @@
-from Param import Param
-import simplejson as json
-
-class ParamJson(Param):
- def __init__(self, value, classname=""):
- super(ParamJson, self).__init__(classname=classname)
- self.value = json.parse(value)
-