summaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
Diffstat (limited to 'tools')
-rw-r--r--tools/json_schema_compiler/model.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/json_schema_compiler/model.py b/tools/json_schema_compiler/model.py
index a35d15e..33c0bc5 100644
--- a/tools/json_schema_compiler/model.py
+++ b/tools/json_schema_compiler/model.py
@@ -162,7 +162,7 @@ class Property(object):
self._unix_name = UnixName(self.name)
self._unix_name_used = False
self.optional = json.get('optional', False)
- self.functions = []
+ self.functions = {}
self.has_value = False
self.description = json.get('description')
self.parent = parent