Adopt snake_case SDK type attribute access

This commit is contained in:
Jeremiah Lowin 2026-07-05 18:09:03 -04:00
commit ed85d477f5
No known key found for this signature in database
77 changed files with 410 additions and 406 deletions

View file

@ -107,7 +107,7 @@ class TestFutureAnnotations:
async with Client(fastmcp_server) as client:
result = await client.call_tool("returns_image", {})
assert result.content[0].type == "image"
assert result.content[0].mimeType == "image/png"
assert result.content[0].mime_type == "image/png"
async def test_async_with_context(self):
async with Client(fastmcp_server) as client: