From a21af1a6d10074774315c6510d98920fb83338a2 Mon Sep 17 00:00:00 2001 From: Brian Potchik Date: Wed, 17 Jun 2020 17:25:55 -0400 Subject: ResetAll settings API resets settings in the active schema by default. --- python/settings.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'python') diff --git a/python/settings.py b/python/settings.py index 3b92ec5d..a83898af 100644 --- a/python/settings.py +++ b/python/settings.py @@ -208,10 +208,10 @@ class Settings(object): view = view.handle return core.BNSettingsReset(self.handle, key, view, scope) - def reset_all(self, view = None, scope = SettingsScope.SettingsAutoScope): + def reset_all(self, view = None, scope = SettingsScope.SettingsAutoScope, schema_only = True): if view is not None: view = view.handle - return core.BNSettingsResetAll(self.handle, view, scope) + return core.BNSettingsResetAll(self.handle, view, scope, schema_only) def get_bool(self, key, view = None): if view is not None: -- cgit v1.3.1