Skip to content

Commit

Permalink
allow empty string value settings (#47)
Browse files Browse the repository at this point in the history
  • Loading branch information
emphasize authored Jan 28, 2023
1 parent e3a5762 commit 522f74d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ovos_workshop/skills/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -365,7 +365,7 @@ def settings(self, val):
return
# ensure self._settings remains a JsonDatabase
self._settings.clear() # clear data
self._settings.merge(val) # merge new data
self._settings.merge(val, skip_empty=False) # merge new data

# not a property in mycroft-core
@property
Expand Down

0 comments on commit 522f74d

Please sign in to comment.