Skip to content

Commit

Permalink
fix config set (#134)
Browse files Browse the repository at this point in the history
fix #73 
fix #59
  • Loading branch information
JarbasAl authored Jun 18, 2024
1 parent 5d629ff commit e9fc76f
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions ovos_config/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -254,6 +254,7 @@ def set(key, value):
ovos-config set -k blacklisted_skills -v myskill # Adds "myskill" as an blacklisted skill
# Since this is a pretty specific key and a value is passed, the user won't be prompted
"""
key = key.lstrip("/")
tuples = list(walkDict(CONFIG, key, full_path=True))
values = [tup[1] for tup in tuples]
paths = ["/".join(tup[0]) for tup in tuples]
Expand Down

0 comments on commit e9fc76f

Please sign in to comment.