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 5fe2faf commit b24f5f3Copy full SHA for b24f5f3
tests/sentry/seer/explorer/test_custom_tool_utils.py
@@ -240,7 +240,7 @@ def test_tool_without_params_model_raises(self):
240
"""Test that a tool without params_model raises an error at class definition time."""
241
with pytest.raises(TypeError) as cm:
242
# This should raise when the class is defined, not when extract_tool_schema is called
243
- class NoParamsTool(ExplorerTool[BaseModel]): # type: ignore[type-arg]
+ class NoParamsTool(ExplorerTool[BaseModel]):
244
@classmethod
245
def get_description(cls) -> str:
246
return "Tool without params_model"
0 commit comments