Skip to content

Commit 91a0167

Browse files
kingpanther13claude
andcommitted
fix: quote [str]? schema types so YAML parser doesn't interpret as list
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent 8eeac14 commit 91a0167

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

homeassistant-addon-dev/config.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,8 @@ schema:
3030
enable_skills: bool?
3131
enable_skills_as_tools: bool?
3232
enable_tool_search: bool?
33-
disabled_tools: [str]?
34-
pinned_tools: [str]?
33+
disabled_tools: "[str]?"
34+
pinned_tools: "[str]?"
3535
tool_search_max_results: "int(2,10)?"
3636
ports:
3737
9583/tcp: 9583

homeassistant-addon/config.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,8 @@ schema:
3636
enable_skills: bool?
3737
enable_skills_as_tools: bool?
3838
enable_tool_search: bool?
39-
disabled_tools: [str]?
40-
pinned_tools: [str]?
39+
disabled_tools: "[str]?"
40+
pinned_tools: "[str]?"
4141
tool_search_max_results: "int(2,10)?"
4242
# Add-on exposes HTTP port for MCP communication (fixed internal port)
4343
ports:

0 commit comments

Comments
 (0)