Skip to content

Commit b24f5f3

Browse files
committed
fix
1 parent 5fe2faf commit b24f5f3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/sentry/seer/explorer/test_custom_tool_utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -240,7 +240,7 @@ def test_tool_without_params_model_raises(self):
240240
"""Test that a tool without params_model raises an error at class definition time."""
241241
with pytest.raises(TypeError) as cm:
242242
# This should raise when the class is defined, not when extract_tool_schema is called
243-
class NoParamsTool(ExplorerTool[BaseModel]): # type: ignore[type-arg]
243+
class NoParamsTool(ExplorerTool[BaseModel]):
244244
@classmethod
245245
def get_description(cls) -> str:
246246
return "Tool without params_model"

0 commit comments

Comments
 (0)