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