We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8681361 commit 35637d3Copy full SHA for 35637d3
MCPForUnity/UnityMcpServer~/src/resources/tags.py
@@ -1,11 +1,12 @@
1
+from pydantic import Field
2
from models import MCPResponse
3
from registry import mcp_for_unity_resource
4
from unity_connection import async_send_command_with_retry
5
6
7
class TagsResponse(MCPResponse):
8
"""List of all tags in the project."""
- data: list[str] = []
9
+ data: list[str] = Field(default_factory=list)
10
11
12
@mcp_for_unity_resource(
0 commit comments