summaryrefslogtreecommitdiff
path: root/python/settings.py
diff options
context:
space:
mode:
authorBrian Potchik <brian@vector35.com>2019-08-07 15:30:53 -0400
committerBrian Potchik <brian@vector35.com>2019-08-07 15:30:53 -0400
commit25cf00a276d9a3da3134601d82654c87bcd9ef9c (patch)
treecb4411e48db783440a6ef0f1dece3ccea5e3a7a6 /python/settings.py
parent4704a1ee70e5b1a82989b2b3b016146fc183aefe (diff)
Settings system improvements.
Diffstat (limited to 'python/settings.py')
-rw-r--r--python/settings.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/python/settings.py b/python/settings.py
index df3522fa..abb859a7 100644
--- a/python/settings.py
+++ b/python/settings.py
@@ -115,8 +115,8 @@ class Settings(object):
def update_property(self, key, setting_property):
return core.BNSettingsUpdateProperty(self.handle, key, setting_property)
- def deserialize_schema(self, schema):
- return core.BNSettingsDeserializeSchema(self.handle, schema)
+ def deserialize_schema(self, schema, scope = SettingsScope.SettingsAutoScope, merge = True):
+ return core.BNSettingsDeserializeSchema(self.handle, schema, scope, merge)
def serialize_schema(self):
return core.BNSettingsSerializeSchema(self.handle)